
:root {
  --color-primary: #1b6f49;
  --color-primary-dark: #14543a;
  --color-primary-light: #2a9060;
  --color-secondary: #f1e6d6;
  --color-accent: #c8a96e;
  --color-accent-dark: #a88a52;
  --color-bg: #faf8f5;
  --color-bg-alt: #f5f0ea;
  --color-bg-warm: #f1e6d6;
  --color-text: #1a1a17;
  --color-text-muted: #6b6659;
  --color-text-light: #9c9487;
  --color-border: #e8dfd4;
  --color-white: #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --nav-height: 72px;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s ease;

  --shadow-sm: 0 1px 3px rgba(26, 26, 23, 0.06), 0 1px 2px rgba(26, 26, 23, 0.04);
  --shadow-md: 0 4px 16px rgba(26, 26, 23, 0.08), 0 2px 6px rgba(26, 26, 23, 0.05);
  --shadow-lg: 0 12px 40px rgba(26, 26, 23, 0.1), 0 4px 12px rgba(26, 26, 23, 0.06);
  --shadow-xl: 0 24px 60px rgba(26, 26, 23, 0.14), 0 8px 20px rgba(26, 26, 23, 0.08);
}

/* ==========================================================================
   REACT ROUTES → WORDPRESS TEMPLATES
   Album, Blog, Vietpot AI, Contact. Shared, framework-free presentation.
   ========================================================================== */
.vp-route-page {
  --vp-route-ink: #17211c;
  --vp-route-muted: #6b746f;
  --vp-route-green: #1b6f49;
  color: var(--vp-route-ink);
  background: #fbfaf7;
}

.vp-route-container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.vp-route-hero {
  padding: 92px 0 68px;
}

.vp-route-hero-light {
  background: #f1e6d6;
}

.vp-route-eyebrow {
  margin: 0 0 18px;
  color: var(--vp-route-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.vp-route-hero h1,
.vp-ai-hero h1 {
  max-width: 900px;
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 500;
  line-height: 1.02;
}

.vp-route-hero h1 em,
.vp-ai-hero h1 em {
  color: var(--vp-route-green);
  font-weight: 400;
}

.vp-route-hero > div > p:last-child,
.vp-ai-hero > div > p {
  max-width: 590px;
  color: var(--vp-route-muted);
  font-size: 16px;
  line-height: 1.75;
}

.vp-route-button,
.vp-route-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  color: #fff;
  background: var(--vp-route-green);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.vp-route-link {
  padding: 3px 0;
  color: var(--vp-route-green);
  background: none;
}

.vp-route-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  color: #fff;
  background: var(--vp-route-green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vp-route-filters {
  position: sticky;
  top: 86px;
  z-index: 20;
  padding: 16px 0;
  border-bottom: 1px solid rgba(27,111,73,.12);
  background: rgba(251,250,247,.9);
  backdrop-filter: blur(16px);
}

.vp-route-filters > div {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.vp-route-filters button {
  flex: 0 0 auto;
  padding: 9px 18px;
  border: 1px solid rgba(27,111,73,.18);
  color: var(--vp-route-ink);
  background: transparent;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.vp-route-filters button.active {
  color: #fff;
  border-color: var(--vp-route-green);
  background: var(--vp-route-green);
}

.vp-route-cta {
  padding: 76px 24px;
  text-align: center;
  background: #f1e6d6;
}

.vp-route-cta > span {
  display: block;
  margin-bottom: 12px;
  font-size: 38px;
}

.vp-route-cta h2 {
  max-width: 720px;
  margin: 0 auto 12px;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 500;
}

.vp-route-cta p {
  max-width: 620px;
  margin: 0 auto 24px;
  color: var(--vp-route-muted);
}

/* Album */
.vp-album-grid {
  columns: 3 300px;
  column-gap: 16px;
  padding-block: 42px 82px;
}

.vp-album-card {
  position: relative;
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  background: #e8e6df;
}

.vp-album-card:nth-child(3n+1) img { aspect-ratio: 4 / 5; }
.vp-album-card:nth-child(3n+2) img { aspect-ratio: 1 / 1; }
.vp-album-card:nth-child(3n) img { aspect-ratio: 4 / 4.6; }

.vp-album-card > img {
  display: block;
  width: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.vp-album-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 26px;
  color: #fff;
  background: linear-gradient(to top, rgba(10,53,36,.9), rgba(27,111,73,.12));
  opacity: 0;
  transition: opacity .3s ease;
}

.vp-album-card:hover > img { transform: scale(1.05); }
.vp-album-card:hover .vp-album-overlay { opacity: 1; }
.vp-album-overlay p { margin: 0 0 6px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.vp-album-overlay h2 { margin: 0 0 8px; color: #fff; font-size: 19px; }
.vp-album-overlay span { margin-bottom: 16px; color: rgba(255,255,255,.75); font-size: 12px; }
.vp-album-overlay a { width: fit-content; padding: 8px 14px; color: var(--vp-route-green); background: #fff; font-size: 12px; font-weight: 800; text-decoration: none; }

/* Blog — legacy rules overridden by VIETPOT_BLOG_HERO_MATCH_ALBUM_2026 below */
.vp-blog-hero { overflow: hidden; }
.vp-blog-hero::after { content: none; }  /* remove old decorative circle */
.vp-blog-hero .vp-route-container { position: relative; z-index: 1; }
.vp-blog-hero h1 { color: #1a1a17; }
.vp-blog-hero h1 em,
.vp-blog-hero .vp-route-eyebrow { color: #1b6f49; }
.vp-blog-hero > div > p:last-child { color: rgba(27,27,20,.78); }

.vp-blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding-top: 4px;
}

.vp-blog-featured > a {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  color: #fff;
}

.vp-blog-featured img,
.vp-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.vp-blog-featured > a:hover img,
.vp-blog-list article:hover img { transform: scale(1.05); }
.vp-blog-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.78), transparent 65%); }
.vp-blog-featured > a > div { position: absolute; inset: auto 0 0; padding: 30px; }
.vp-blog-featured h2 { margin: 0 0 8px; color: #fff; font-family: var(--font-display); font-size: clamp(20px, 3vw, 30px); font-weight: 500; }
.vp-blog-featured p { margin: 0; color: rgba(255,255,255,.7); font-size: 12px; }

.vp-blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 60px;
  padding-block: 70px 100px;
}

.vp-blog-list { display: grid; gap: 34px; }
.vp-blog-list article { display: grid; grid-template-columns: 210px 1fr; gap: 26px; padding-bottom: 34px; border-bottom: 1px solid rgba(27,111,73,.12); }
.vp-blog-thumb { display: block; height: 160px; overflow: hidden; }
.vp-blog-list h2 { margin: 0 0 9px; font-family: var(--font-display); font-size: 23px; font-weight: 500; line-height: 1.3; }
.vp-blog-list h2 a { color: inherit; text-decoration: none; }
.vp-blog-list p { margin: 0 0 12px; color: var(--vp-route-muted); line-height: 1.65; }
.vp-blog-list small { color: #929994; }
.vp-blog-sidebar { position: sticky; top: 112px; align-self: start; }
.vp-blog-ai { margin-bottom: 32px; padding: 30px; color: #fff; background: #0d2e1f; }
.vp-blog-ai h2 { margin: 8px 0; color: #fff; font-family: var(--font-display); }
.vp-blog-ai p { color: rgba(255,255,255,.68); }
.vp-blog-ai a { color: #0d2e1f; background: #f1e6d6; padding: 10px 16px; font-weight: 800; text-decoration: none; }
.vp-blog-sidebar > h3 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.vp-blog-mini { display: grid; grid-template-columns: 64px 1fr; gap: 12px; align-items: center; padding: 13px 0; border-bottom: 1px solid rgba(27,111,73,.12); color: inherit; font-size: 13px; font-weight: 600; text-decoration: none; }
.vp-blog-mini img { width: 64px; height: 64px; object-fit: cover; }

/* Contact */
.vp-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding-block: 72px 100px;
}

.vp-contact-layout h2 { margin: 0 0 28px; font-family: var(--font-display); font-size: 34px; font-weight: 500; }
.vp-contact-form { display: grid; gap: 18px; }
.vp-contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vp-contact-form label { display: grid; gap: 8px; color: var(--vp-route-muted); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.vp-contact-form input,
.vp-contact-form select,
.vp-contact-form textarea,
.vp-ai-input input {
  width: 100%;
  border: 1px solid rgba(27,111,73,.18);
  border-radius: 0;
  padding: 14px 15px;
  color: var(--vp-route-ink);
  background: #fff;
  font: inherit;
  font-size: 14px;
  letter-spacing: normal;
  text-transform: none;
  outline: none;
}
.vp-contact-form input:focus,
.vp-contact-form select:focus,
.vp-contact-form textarea:focus { border-color: var(--vp-route-green); box-shadow: 0 0 0 3px rgba(27,111,73,.08); }
.vp-contact-status { padding: 14px; color: #14543a; background: #e7f5ed; }
.vp-contact-cards { display: grid; gap: 14px; margin-bottom: 28px; }
.vp-contact-cards article { display: grid; grid-template-columns: 36px 1fr; gap: 14px; padding: 20px; border: 1px solid rgba(27,111,73,.12); background: #f7f4ed; }
.vp-contact-cards article > span { color: var(--vp-route-green); font-size: 24px; }
.vp-contact-cards h3 { margin: 0 0 5px; font-size: 14px; }
.vp-contact-cards p { margin: 0; color: var(--vp-route-muted); line-height: 1.65; }
.vp-contact-cards a { color: var(--vp-route-green); }
.vp-contact-map { position: relative; height: 260px; overflow: hidden; }
.vp-contact-map img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.vp-contact-map > div { position: absolute; inset: 0; display: grid; place-content: center; gap: 8px; padding: 24px; text-align: center; }
.vp-contact-map span { max-width: 430px; color: var(--vp-route-muted); font-size: 12px; }

/* VIETPOT_CONTACT_PAGE_REDESIGN_2026 ══════════════════════════════════ */

.vp-ct-container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

/* ── Hero ── */
.vp-ct-hero {
  background: linear-gradient(140deg, #0b3322 0%, #1b6f49 55%, #2a8060 100%);
  padding: 80px 0 72px;
  overflow: hidden;
}

.vp-ct-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vp-ct-eyebrow {
  margin: 0 0 18px;
  color: #d7c39d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vp-ct-hero-copy h1 {
  margin: 0 0 20px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.8vw, 66px);
  font-weight: 500;
  line-height: 1.04;
}

.vp-ct-hero-copy > p {
  max-width: 460px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.75;
}

.vp-ct-hero-actions {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.vp-ct-hero-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  border-radius: 999px;
  background: #fff;
  color: #1b6f49;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.12s ease;
}

.vp-ct-hero-btn:hover {
  background: #f1e6d6;
  transform: translateY(-1px);
}

.vp-ct-hero-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s ease;
}

.vp-ct-hero-link:hover {
  color: #fff;
}

.vp-ct-hero-visual {
  display: flex;
  justify-content: center;
}

.vp-ct-hero-arch {
  width: min(360px, 100%);
  aspect-ratio: 3 / 4;
  border-radius: 180px 180px 24px 24px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  border: 3px solid rgba(255, 255, 255, 0.14);
}

.vp-ct-hero-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Info strip ── */
.vp-ct-info-strip {
  background: #fbfaf7;
  padding-bottom: 0;
}

.vp-ct-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: -36px;
  position: relative;
  z-index: 2;
  padding-bottom: 0;
}

.vp-ct-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 22px;
  background: #fff;
  border: 1px solid rgba(27, 111, 73, 0.1);
  border-radius: 18px;
  box-shadow: 0 6px 28px rgba(27, 111, 73, 0.09);
}

.vp-ct-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(27, 111, 73, 0.09);
  color: #1b6f49;
}

.vp-ct-card-label {
  margin: 0 0 4px;
  color: #6b746f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vp-ct-card-value {
  display: block;
  margin-bottom: 4px;
  color: #17211c;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

a.vp-ct-card-value:hover {
  color: #1b6f49;
}

.vp-ct-card-sub {
  margin: 0;
  color: #6b746f;
  font-size: 13px;
  line-height: 1.5;
}

/* ── Main 2-column ── */
.vp-ct-main {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 52px;
  padding-block: 56px 40px;
}

/* ── Form column ── */
.vp-ct-form-col h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: #17211c;
}

.vp-ct-form-lead {
  margin: 0 0 28px;
  color: #6b746f;
  font-size: 15px;
  line-height: 1.65;
}

.vp-ct-form {
  display: grid;
  gap: 18px;
}

.vp-ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vp-ct-form label {
  display: grid;
  gap: 8px;
}

.vp-ct-form label > span {
  color: #6b746f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vp-ct-form input,
.vp-ct-form select,
.vp-ct-form textarea {
  width: 100%;
  border: 1.5px solid rgba(27, 111, 73, 0.18);
  border-radius: 12px;
  padding: 13px 16px;
  color: #17211c;
  background: #fff;
  font: inherit;
  font-size: 14px;
  letter-spacing: normal;
  text-transform: none;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}

.vp-ct-form select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b746f' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.vp-ct-form input:focus,
.vp-ct-form select:focus,
.vp-ct-form textarea:focus {
  border-color: #1b6f49;
  box-shadow: 0 0 0 3px rgba(27, 111, 73, 0.1);
}

.vp-ct-form textarea {
  resize: vertical;
  min-height: 132px;
}

.vp-ct-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 24px;
  border: none;
  border-radius: 14px;
  background: #1b6f49;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.12s ease;
}

.vp-ct-submit:hover {
  background: #14543a;
  transform: translateY(-1px);
}

.vp-ct-form .vp-contact-status {
  padding: 16px 20px;
  border-radius: 12px;
  color: #14543a;
  background: #e7f5ed;
  font-size: 14px;
  line-height: 1.6;
}

/* ── Aside column ── */
.vp-ct-aside-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vp-ct-aside-card {
  padding: 26px 26px 28px;
  background: #fff;
  border: 1px solid rgba(27, 111, 73, 0.1);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(27, 111, 73, 0.06);
}

.vp-ct-aside-card h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: #17211c;
}

.vp-ct-aside-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.vp-ct-aside-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.vp-ct-aside-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(27, 111, 73, 0.09);
  color: #1b6f49;
  font-size: 15px;
}

.vp-ct-aside-list strong {
  display: block;
  margin-bottom: 4px;
  color: #17211c;
  font-size: 14px;
  font-weight: 700;
}

.vp-ct-aside-list p {
  margin: 0;
  color: #6b746f;
  font-size: 13px;
  line-height: 1.6;
}

/* Social list */
.vp-ct-social-list {
  display: grid;
  gap: 10px;
}

.vp-ct-social-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: #f7f4ed;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease, transform 0.12s ease;
}

.vp-ct-social-item:hover {
  background: rgba(27, 111, 73, 0.08);
  transform: translateX(3px);
}

.vp-ct-soc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.vp-ct-soc-fb { background: #1877f2; }
.vp-ct-soc-ms { background: #0099ff; }
.vp-ct-soc-zl { background: #0068ff; }

.vp-ct-social-item > div {
  flex: 1;
  min-width: 0;
}

.vp-ct-social-item > div strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #17211c;
}

.vp-ct-social-item > div span {
  display: block;
  font-size: 12px;
  color: #6b746f;
}

.vp-ct-soc-arr {
  flex-shrink: 0;
  color: #c0c8c2;
  transition: color 0.15s ease;
}

.vp-ct-social-item:hover .vp-ct-soc-arr {
  color: #1b6f49;
}

/* Quick action buttons */
.vp-ct-quick-wrap {
  display: grid;
  gap: 10px;
}

.vp-ct-quick-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: transform 0.12s ease, filter 0.15s ease;
}

.vp-ct-quick-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.vp-ct-qb-ms { background: #0099ff; color: #fff; }
.vp-ct-qb-zl { background: #0068ff; color: #fff; }
.vp-ct-qb-ai { background: #1b6f49; color: #fff; }

/* ── Map section ── */
.vp-ct-map-section {
  padding: 0 0 80px;
  background: #fbfaf7;
}

.vp-ct-map-head {
  padding: 24px 0 24px;
}

.vp-ct-map-head h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: #17211c;
}

.vp-ct-map-head p {
  margin: 0;
  color: #6b746f;
  font-size: 15px;
}

.vp-ct-map-frame {
  position: relative;
  height: 360px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(27, 111, 73, 0.1);
}

.vp-ct-map-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(0.55) brightness(0.92);
}

.vp-ct-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.vp-ct-map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px 32px;
  background: linear-gradient(to top, rgba(11, 51, 34, 0.68) 0%, transparent 55%);
}

.vp-ct-map-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.vp-ct-map-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #17211c;
}

.vp-ct-map-badge span {
  display: block;
  font-size: 12px;
  color: #6b746f;
}

.vp-ct-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  background: #1b6f49;
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.12s ease;
}

.vp-ct-map-link:hover {
  background: #14543a;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════
   Responsive — Contact page
══════════════════════════════════════════════════════════ */

/* Vietpot AI safe demo */
.vp-ai-page { padding-top: 0; background: linear-gradient(145deg, #0d2e1f, #174d37); }
.vp-ai-hero { display: grid; grid-template-columns: 1.4fr .6fr; gap: 50px; align-items: center; width: min(1200px, calc(100% - 48px)); min-height: 650px; margin: 0 auto; padding: 80px 0; color: #fff; }
.vp-ai-hero h1 { color: #fff; }
.vp-ai-hero h1 em,
.vp-ai-hero .vp-route-eyebrow { color: #d7c39d; }
.vp-ai-hero > div > p { color: rgba(255,255,255,.68); }
.vp-ai-actions { display: flex; gap: 18px; align-items: center; margin-top: 28px; }
.vp-ai-actions a:last-child { color: #fff; text-decoration: none; }
.vp-ai-orbit { position: relative; display: grid; place-items: center; width: min(330px, 100%); aspect-ratio: 1; margin: auto; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.04), 0 0 0 90px rgba(255,255,255,.025); }
.vp-ai-orbit span { font-size: 90px; }
.vp-ai-orbit i { position: absolute; right: 8%; bottom: 12%; display: grid; place-items: center; width: 72px; height: 72px; border-radius: 50%; color: #0d2e1f; background: #f1e6d6; font-style: normal; font-weight: 900; }
.vp-ai-demo-shell { margin-bottom: 80px; padding: 34px; border-radius: 30px; background: #fbfaf7; box-shadow: 0 35px 100px rgba(0,0,0,.25); }
.vp-ai-demo-head { display: flex; gap: 13px; align-items: center; padding-bottom: 20px; border-bottom: 1px solid rgba(27,111,73,.12); }
.vp-ai-demo-head > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: #fff; background: var(--vp-route-green); }
.vp-ai-demo-head h2,
.vp-ai-demo-head p { margin: 0; }
.vp-ai-demo-head p { color: var(--vp-route-muted); font-size: 12px; }
.vp-ai-messages { display: grid; gap: 12px; min-height: 180px; padding: 28px 0; }
.vp-ai-message { width: fit-content; max-width: min(620px, 86%); margin: 0; padding: 13px 17px; border-radius: 18px 18px 18px 4px; background: #e8efe9; }
.vp-ai-message.user { justify-self: end; border-radius: 18px 18px 4px 18px; color: #fff; background: var(--vp-route-green); }
.vp-ai-choices { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 18px; }
.vp-ai-choices button { padding: 10px 14px; border: 1px solid rgba(27,111,73,.18); border-radius: 999px; color: var(--vp-route-green); background: #fff; font: inherit; cursor: pointer; }
.vp-ai-input { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.vp-ai-input input { border-radius: 999px; }
.vp-ai-input button { border: 0; border-radius: 999px; padding: 0 22px; color: #fff; background: var(--vp-route-green); font-weight: 800; }
.vp-ai-note { margin: 13px 0 0; color: var(--vp-route-muted); font-size: 11px; }

/* Vietpot AI external service embed. */
.vp-ai-embed-page {
  width: 100%;
  min-height: 100vh;
  padding-top: 0;
  background: #f7f2ea;
}

.vp-ai-embed-frame {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #f7f2ea;
}

.vp-ai-embed-frame iframe {
  display: block;
  width: 100%;
  height: 100vh;
  min-height: 820px;
  border: 0;
  background: #f7f2ea;
}

.vp-ai-embed-placeholder {
  display: grid;
  place-content: center;
  justify-items: center;
  min-height: max(720px, 100vh);
  padding: 140px 24px 80px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 25%, rgba(200,169,110,.22), transparent 28%),
    linear-gradient(145deg, #0d2e1f, #174d37);
}

.vp-ai-embed-placeholder .vp-route-eyebrow {
  color: #d7c39d;
}

.vp-ai-embed-placeholder h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 500;
  line-height: 1;
}

.vp-ai-embed-placeholder > p:not(.vp-route-eyebrow) {
  max-width: 600px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.7);
  font-size: 16px;
}

.vp-ai-embed-placeholder > a {
  padding: 13px 22px;
  border-radius: 999px;
  color: #0d2e1f;
  background: #f1e6d6;
  font-weight: 800;
  text-decoration: none;
}

.vp-ai-embed-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: #f1e6d6;
  font-size: 28px;
}

@media (max-width: 620px) {
  .vp-ai-embed-frame iframe {
    min-height: 720px;
  }
}

/* Vietpot AI iframe inside the WordPress shell. */
body .vp-ai-embed-page {
  width: 100%;
  padding: 0;
  background: #f7f2ea;
}

.vp-ai-frame-wrap {
  width: 100%;
  min-height: calc(100vh - 110px);
  overflow: visible;
  background: #f7f2ea;
}

.vp-ai-frame {
  display: block;
  width: 100%;
  height: auto;
  min-height: 760px;
  border: 0;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  background: #f7f2ea;
}

.vp-ai-frame-fallback {
  margin: 0;
  padding: 32px;
  color: #17211c;
  text-align: center;
}

@media (max-width: 620px) {
  .vp-ai-frame-wrap {
    min-height: calc(100vh - 82px);
  }

  .vp-ai-frame {
    height: auto;
    min-height: 680px;
    border-radius: 20px 20px 0 0;
  }
}

@media (max-width: 900px) {
  .vp-route-container,
  .vp-ai-hero { width: min(100% - 28px, 1200px); }
  .vp-blog-layout,
  .vp-contact-layout,
  .vp-ai-hero { grid-template-columns: 1fr; }
  .vp-blog-sidebar { position: static; }
  .vp-ai-orbit { width: 230px; }
}

@media (max-width: 620px) {
  .vp-route-hero { padding: 68px 0 48px; }
  .vp-route-filters { top: 70px; }
  .vp-blog-featured,
  .vp-contact-row { grid-template-columns: 1fr; }
  .vp-blog-list article { grid-template-columns: 1fr; }
  .vp-blog-thumb { height: 220px; }
  .vp-contact-layout { gap: 48px; padding-block: 52px 70px; }
  .vp-ai-hero { min-height: auto; padding-block: 70px; }
  .vp-ai-orbit { display: none; }
  .vp-ai-demo-shell { width: calc(100% - 20px); padding: 22px 16px; border-radius: 22px; }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: #477a73;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Vietpot Editorial Homepage ─── */
.vp-home {
  min-height: 100vh;
  padding: 0 18px 34px;
  background: #f7f2ea;
}

/* Body background: override teal gradient từ header.php cho riêng trang chủ */
body.home {
  background: #f7f2ea !important;
}

.vp-site-shell {
  width: min(1680px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: #f7f2ea;
  box-shadow: 0 34px 90px rgba(13, 34, 27, 0.24);
  overflow: hidden;
}

.vp-editorial-nav {
  top: 24px;
  left: 50%;
  right: auto;
  width: min(1680px, calc(100% - 60px));
  height: 68px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 45px rgba(11, 35, 27, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    top 0.3s ease,
    width 0.3s ease,
    height 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.vp-editorial-nav.nav-scrolled {
  top: 14px;
  height: 62px;
  background: rgba(27, 111, 73, 0.96);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 55px rgba(11, 35, 27, 0.28);
}

.vp-editorial-nav.nav-top {
  color: white;
}

.vp-editorial-nav .container-vp {
  max-width: none;
  padding: 0 16px 0 18px;
  gap: 18px;
}

.vp-editorial-nav nav {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 620px;
  justify-content: center;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.vp-editorial-nav nav a {
  border-radius: 999px;
  white-space: nowrap;
  padding: 9px 15px !important;
  font-size: 13px !important;
  letter-spacing: 0.02em !important;
}

.vp-editorial-nav nav a:hover {
  background: rgba(255, 255, 255, 0.13);
}

.vp-nav-action-pill {
  align-items: center;
  gap: 6px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 999px;
  padding: 8px 14px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.vp-nav-action-pill span {
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.vp-nav-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #1b6f49;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.vp-footer-global-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: #1b6f49;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

/* ─── Vietpot AI Embed Page ─── */
.vp-ai-embed-page {
  padding: calc(var(--nav-height) + 58px) 18px 90px;
  background:
    radial-gradient(circle at 82% 0%, rgba(27, 111, 73, 0.16), transparent 32%),
    linear-gradient(180deg, #f1e6d6 0%, #f7f2ea 42%, #faf8f5 100%);
}

.vp-ai-embed-hero,
.vp-ai-frame-section {
  width: min(1440px, calc(100vw - 48px));
  margin: 0 auto;
}

.vp-ai-embed-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: stretch;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(27, 111, 73, 0.16);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(27, 111, 73, 0.96), rgba(20, 84, 58, 0.9)),
    url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1600&q=85') center/cover;
  color: white;
  box-shadow: 0 28px 80px rgba(27, 111, 73, 0.18);
  overflow: hidden;
}

.vp-ai-embed-hero-copy {
  max-width: 880px;
}

.vp-ai-embed-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f1e6d6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vp-ai-embed-hero h1 {
  max-width: 780px;
  margin: 0 0 18px;
  font-family: var(--font-body);
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.vp-ai-embed-hero p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.7;
}

.vp-ai-embed-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.vp-ai-embed-steps span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(241, 230, 214, 0.12);
  color: #fffaf2;
  font-size: 13px;
  font-weight: 700;
}

.vp-ai-embed-card {
  align-self: center;
  display: grid;
  justify-items: center;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: rgba(247, 242, 234, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  text-align: center;
}

.vp-ai-embed-card img {
  width: 158px;
  height: 158px;
  border-radius: 50%;
  object-fit: cover;
  background: #1b6f49;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
}

.vp-ai-embed-card strong {
  margin-top: 18px;
  font-size: 22px;
}

.vp-ai-embed-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.vp-ai-frame-section {
  margin-top: 26px;
}

.vp-ai-frame-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 16px;
  padding: 0 8px;
}

.vp-ai-frame-header span {
  display: block;
  margin-bottom: 5px;
  color: #1b6f49;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vp-ai-frame-header h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.vp-ai-frame-header a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1b6f49;
  color: white;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.vp-ai-frame-shell {
  padding: 12px;
  border: 1px solid rgba(27, 111, 73, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(35, 55, 44, 0.13);
}

.vp-ai-frame-shell iframe {
  display: block;
  width: 100%;
  min-height: 850px;
  border: 0;
  border-radius: 24px;
  background: #f1e6d6;
}

.vp-ai-live-page {
  padding: var(--nav-height) 0 0;
  background: #f7f2ea;
}

.vp-ai-live-frame {
  width: 100%;
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  background: #f7f2ea;
  box-shadow: none;
  overflow: hidden;
}

.vp-ai-live-frame iframe {
  display: block;
  width: 100%;
  height: calc(100vh - var(--nav-height));
  min-height: 850px;
  border: 0;
  background: #f7f2ea;
}

.vp-hero-card {
  position: relative;
  width: calc(100% + 2px);
  margin: -1px -1px 0;
  min-height: 800px;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  isolation: isolate;
}

.vp-shell-padded {
  margin-inline: 16px;
}

.vp-hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vp-hero-card > img,
.vp-hero-slide,
.vp-video-card > img,
.vp-community-footer > img,
.vp-dark-card > img,
.vp-space-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.vp-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 1s ease,
    transform 5.2s ease;
}

.vp-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.vp-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(241, 230, 214, 0.08), transparent 24%),
    linear-gradient(105deg, rgba(5, 23, 16, 0.5) 0%, rgba(8, 40, 27, 0.28) 42%, rgba(8, 40, 27, 0.04) 100%);
  z-index: 1;
}

.vp-hero-content {
  position: absolute;
  left: clamp(26px, 6vw, 76px);
  bottom: clamp(132px, 14vw, 190px);
  z-index: 2;
  max-width: 760px;
  color: white;
}

.vp-hero-kicker,
.vp-mini-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(241, 230, 214, 0.16);
  color: #f7f2ea;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vp-hero-content h1 {
  max-width: 1040px;
  margin: 0 0 20px;
  font-family: var(--font-body);
  font-size: clamp(46px, 8vw, 96px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.vp-hero-content p {
  max-width: 620px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.vp-hero-actions,
.vp-hero-badges,
.vp-tabs,
.vp-social-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vp-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #1b6f49;
  color: white;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.vp-pill-btn:hover {
  transform: translateY(-2px);
  background: #14543a;
  box-shadow: 0 14px 32px rgba(27, 111, 73, 0.25);
}

.vp-pill-btn-light {
  background: #f7f2ea;
  color: #10251b;
}

.vp-pill-btn-light:hover {
  background: white;
}

.vp-pill-btn-outline-light {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.vp-hero-badges {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 2;
}

.vp-hero-badges span,
.vp-tabs a,
.vp-product-badge,
.vp-social-pills a {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.vp-hero-down {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.vp-category-overlay {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: -80px;
  padding-bottom: 18px;
}

.vp-category-overlay-card {
  position: relative;
  min-height: 280px;
  border-radius: 22px;
  overflow: hidden;
  color: white;
  text-decoration: none;
  isolation: isolate;
  box-shadow: 0 20px 46px rgba(19, 42, 31, 0.24);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease;
}

.vp-category-overlay-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 62px rgba(19, 42, 31, 0.3);
}

.vp-category-overlay-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.vp-category-overlay-card:hover img {
  transform: scale(1.07);
}

.vp-category-overlay-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 28, 18, 0) 0%, rgba(6, 28, 18, 0.18) 48%, rgba(6, 28, 18, 0.72) 100%),
    radial-gradient(circle at 22% 18%, rgba(241, 230, 214, 0.12), transparent 30%);
}

.vp-category-overlay-card div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 72px;
  bottom: 24px;
}

.vp-category-overlay-card h3 {
  max-width: 260px;
  margin: 0 0 8px;
  color: white;
  font-family: var(--font-body);
  font-size: clamp(23px, 2vw, 34px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.vp-category-overlay-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.vp-category-overlay-card .vp-round-arrow {
  z-index: 2;
  right: 22px;
  bottom: 22px;
  background: white;
  color: #163f2b;
  border-color: rgba(255, 255, 255, 0.8);
}

.vp-products-section {
  padding-top: clamp(46px, 6vw, 76px);
}

.vp-section,
.vp-ai-section,
.vp-video-section,
.vp-faq-section {
  padding: clamp(54px, 8vw, 96px) 10px 0;
}

.vp-section-heading {
  margin-bottom: 28px;
}

.vp-section-heading span,
.vp-faq-copy span {
  display: block;
  margin-bottom: 8px;
  color: #1b6f49;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vp-section-heading h2,
.vp-ai-copy h2,
.vp-faq-copy h2,
.vp-community-footer h2 {
  margin: 0;
  color: #121b18;
  font-family: var(--font-body);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.vp-split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
  align-items: end;
  gap: 28px;
}

.vp-split-heading p,
.vp-ai-copy p,
.vp-faq-copy p {
  margin: 0;
  color: #5f685f;
  font-size: 15px;
  line-height: 1.7;
}

.vp-centered-heading {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.vp-tabs {
  margin-bottom: 18px;
}

.vp-tabs a {
  border-color: rgba(27, 111, 73, 0.16);
  background: rgba(255, 255, 255, 0.62);
  color: #173f2c;
}

.vp-tabs a.active,
.vp-tabs a:hover {
  background: #1b6f49;
  color: white;
}

.vp-category-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: 14px;
}

.vp-dark-card {
  position: relative;
  min-height: 330px;
  border-radius: 20px;
  overflow: hidden;
  color: white;
  text-decoration: none;
  background: #123a29;
  isolation: isolate;
}

.vp-dark-card:first-child {
  min-height: 420px;
}

.vp-dark-card:hover > img,
.vp-space-card:hover > img,
.vp-video-card:hover > img {
  transform: scale(1.06);
}

.vp-dark-card-shade,
.vp-community-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(2, 17, 11, 0.78), rgba(2, 17, 11, 0.15));
}

.vp-community-shade {
  background:
    linear-gradient(to top, rgba(2, 17, 11, 0.9), rgba(2, 17, 11, 0.42)),
    radial-gradient(circle at 50% 0%, rgba(27, 111, 73, 0.34), transparent 54%);
}

.vp-dark-card-content {
  position: absolute;
  left: 22px;
  right: 66px;
  bottom: 22px;
  z-index: 2;
}

.vp-dark-card h3,
.vp-space-card h3 {
  margin: 0 0 8px;
  color: white;
  font-family: var(--font-body);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.vp-dark-card p {
  max-width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.55;
}

.vp-round-arrow {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #10251b;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.vp-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.vp-product-editorial {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(27, 111, 73, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vp-product-editorial:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(35, 55, 44, 0.12);
}

.vp-product-media {
  position: relative;
  aspect-ratio: 1.08;
  overflow: hidden;
  border-radius: 18px;
  margin: 8px;
  background: #ece2d4;
}

.vp-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.vp-product-editorial:hover img {
  transform: scale(1.06);
}

.vp-product-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  border: none;
  background: rgba(27, 111, 73, 0.9);
}

.vp-product-info {
  padding: 12px 18px 20px;
}

.vp-product-info span {
  display: block;
  margin-bottom: 6px;
  color: #6f796f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.vp-product-info h3 {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.vp-product-info p {
  min-height: 44px;
  margin: 0 0 14px;
  color: #667066;
  font-size: 13px;
  line-height: 1.55;
}

.vp-product-info strong {
  color: #1b6f49;
  font-size: 16px;
}

/* VIETPOT_HOME_MONTHLY_BESTSELLERS_2026 */
.vp-bestsellers-section {
  padding-top: clamp(46px, 6vw, 76px);
}

.vp-bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.vp-bs-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(27, 111, 73, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.vp-bs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(35, 55, 44, 0.13);
}

.vp-bs-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  margin: 10px;
  border-radius: 14px;
  background: #ece2d4;
  flex-shrink: 0;
}

.vp-bs-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.vp-bs-card:hover .vp-bs-media img {
  transform: scale(1.06);
}

.vp-bs-rank {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1b6f49;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(27, 111, 73, 0.35);
}

.vp-bs-card--top .vp-bs-rank {
  width: 34px;
  height: 34px;
  background: #b8860b;
  font-size: 15px;
  box-shadow: 0 2px 10px rgba(184, 134, 11, 0.4);
}

.vp-bs-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 16px 18px;
}

.vp-bs-cat {
  color: #6f796f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.vp-bs-info h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: #121b18;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vp-bs-sales {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(27, 111, 73, 0.08);
  color: #1b6f49;
  font-size: 11px;
  font-weight: 700;
  width: fit-content;
}

.vp-bs-info strong {
  color: #1b6f49;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.vp-bs-cta {
  display: inline-block;
  margin-top: 2px;
  color: #1b6f49;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: letter-spacing 0.15s ease;
}

.vp-bs-card:hover .vp-bs-cta {
  letter-spacing: 0.04em;
}

/* VIETPOT_HOME_MONTHLY_BESTSELLER_CAROUSEL_2026 */

.vp-bsc-section {
  padding-top: clamp(46px, 6vw, 76px);
}

.vp-bsc-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

/* ── Lead (left text panel) ── */
.vp-bsc-lead {
  flex: 0 0 260px;
  padding-top: 6px;
}

.vp-bsc-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: #1b6f49;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vp-bsc-title {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #121b18;
}

.vp-bsc-desc {
  margin: 0 0 28px;
  color: #5f685f;
  font-size: 15px;
  line-height: 1.7;
}

.vp-bsc-shop-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  background: #1b6f49;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.12s ease;
}

.vp-bsc-shop-link:hover {
  background: #14543a;
  transform: translateY(-1px);
}

/* ── Carousel (right panel) ── */
.vp-bsc-carousel-wrap {
  flex: 1;
  min-width: 0;
}

.vp-bsc-clip-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vp-bsc-track-clip {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.vp-bsc-track {
  display: flex;
  gap: 14px;
  transition: transform 0.48s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Cards inside carousel: always vertical, JS sets width */
.vp-bsc-track .vp-bs-card {
  flex-shrink: 0;
  flex-direction: column;
}

.vp-bsc-track .vp-bs-media {
  width: auto;
  aspect-ratio: 1;
  margin: 10px;
  border-radius: 14px;
}

.vp-bsc-track .vp-bs-info {
  padding: 8px 14px 16px;
}

/* ── Nav buttons ── */
.vp-bsc-nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #17211c;
  cursor: pointer;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
}

.vp-bsc-nav:hover {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.18);
  transform: scale(1.1);
}

.vp-bsc-nav:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ── Dots ── */
.vp-bsc-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
}

.vp-bsc-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  border: none;
  background: rgba(27, 111, 73, 0.22);
  cursor: pointer;
  padding: 0;
  transition: width 0.22s ease, background 0.22s ease;
}

.vp-bsc-dot.is-active {
  width: 22px;
  background: #1b6f49;
}

.vp-space-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vp-space-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  color: white;
  text-decoration: none;
  background: #143c2b;
  min-height: 280px;
  aspect-ratio: 4 / 3;
  box-shadow: 0 18px 45px rgba(16, 38, 29, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.vp-space-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(16, 38, 29, 0.2);
}

.vp-space-card h3 {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 2;
}

.vp-space-large {
  grid-row: auto;
}

.vp-space-wide {
  grid-column: auto;
}

.vp-why-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 1400px;
  margin: 84px auto 0;
  padding: clamp(52px, 5.6vw, 80px);
  border: 1px solid rgba(27, 111, 73, 0.1);
  border-radius: 32px;
  background: #fbf8f2;
  box-shadow: 0 24px 70px rgba(25, 54, 42, 0.12);
}

.vp-why-bg,
.vp-why-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vp-why-bg {
  z-index: -2;
  background:
    url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1800&q=85')
    center / cover no-repeat;
  filter: saturate(0.88);
  opacity: 0.42;
}

.vp-why-wash {
  z-index: -1;
  background:
    radial-gradient(circle at 52% 44%, rgba(255, 255, 255, 0.4), transparent 34%),
    rgba(255, 255, 255, 0.74);
}

.vp-why-content {
  position: relative;
  z-index: 1;
}

.vp-why-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1.24fr);
  gap: clamp(34px, 4.6vw, 64px);
  align-items: center;
}

.vp-why-heading {
  position: relative;
  max-width: 440px;
  padding-left: 8px;
}

.vp-why-heading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -26px;
  z-index: -1;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(27, 111, 73, 0.16), rgba(27, 111, 73, 0) 70%);
  filter: blur(2px);
  transform: translateY(-52%);
}

.vp-why-heading > span {
  display: inline-flex;
  margin-bottom: 22px;
  color: #1b6f49;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vp-why-heading h2 {
  margin: 0;
  color: #102218;
  font-family: var(--font-display);
  font-size: clamp(54px, 5.7vw, 86px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.vp-why-heading p {
  max-width: 390px;
  margin: 28px 0 0;
  color: #4f5b50;
  font-size: 16px;
  line-height: 1.75;
}

.vp-why-card-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

.vp-why-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 26px;
  background: #173626;
  box-shadow: 0 18px 44px rgba(22, 48, 35, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vp-why-card-1 {
  grid-column: span 7;
}

.vp-why-card-2 {
  grid-column: span 5;
}

.vp-why-card-3 {
  grid-column: span 5;
}

.vp-why-card-4 {
  grid-column: span 7;
}

.vp-why-card:nth-child(even) {
  transform: none;
}

.vp-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 66px rgba(22, 48, 35, 0.24);
}

.vp-why-card:nth-child(even):hover {
  transform: translateY(-6px);
}

.vp-why-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.vp-why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 36, 26, 0.08) 0%, rgba(13, 36, 26, 0.24) 46%, rgba(8, 26, 18, 0.84) 100%);
  pointer-events: none;
}

.vp-why-card:hover > img {
  transform: scale(1.055);
}

.vp-why-card-top {
  position: absolute;
  inset: 14px 16px auto auto;
  z-index: 2;
  pointer-events: none;
}

.vp-why-card-top > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.vp-why-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #1b6f49;
  box-shadow: 0 12px 28px rgba(14, 36, 25, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.vp-why-card-copy {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 106px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(12, 39, 27, 0.38);
  color: white;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 16px 35px rgba(8, 27, 18, 0.18);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.vp-why-card h3 {
  margin: 0;
  color: white;
  font-family: var(--font-body);
  font-size: clamp(19px, 1.35vw, 24px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.vp-why-card p {
  display: -webkit-box;
  margin: 7px 0 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.vp-why-commitments {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  padding-top: 32px;
  border-top: 1px solid rgba(27, 111, 73, 0.14);
}

.vp-why-commitment {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: #1b6f49;
}

.vp-why-commitment span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(27, 111, 73, 0.09);
}

.vp-why-commitment strong {
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
}

.vp-ai-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.vp-ai-copy,
.vp-ai-demo,
.vp-faq-section {
  border-radius: 24px;
  border: 1px solid rgba(27, 111, 73, 0.13);
  background: rgba(255, 255, 255, 0.68);
}

.vp-ai-copy {
  padding: clamp(28px, 5vw, 54px);
}

.vp-mini-label {
  background: rgba(27, 111, 73, 0.1);
  color: #1b6f49;
}

.vp-ai-copy p {
  margin: 18px 0 28px;
}

.vp-ai-demo {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  padding: 14px;
  color: inherit;
  text-decoration: none;
}

.vp-ai-upload,
.vp-ai-result {
  border-radius: 20px;
  background: #f1e6d6;
}

.vp-ai-upload {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 280px;
  padding: 28px;
  border: 1px dashed rgba(27, 111, 73, 0.28);
  color: #1b6f49;
  text-align: center;
}

.vp-ai-upload strong {
  display: block;
  margin-top: 12px;
  color: #12231b;
  font-size: 22px;
}

.vp-ai-upload span,
.vp-ai-result p {
  color: #657065;
  font-size: 13px;
}

.vp-ai-result {
  overflow: hidden;
  background: white;
}

.vp-ai-result img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.vp-ai-result div {
  padding: 18px;
}

.vp-ai-result span {
  color: #1b6f49;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vp-ai-result strong {
  display: block;
  margin: 4px 0 6px;
  font-size: 22px;
}

.vp-video-card {
  position: relative;
  height: clamp(280px, 48vw, 520px);
  margin-top: 26px;
  border-radius: 24px;
  overflow: hidden;
  background: #143c2b;
}

.vp-video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 22, 15, 0.2);
}

.vp-video-card button {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 88px;
  height: 88px;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #1b6f49;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.vp-faq-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
}

.vp-faq-copy {
  padding: 14px;
}

.vp-faq-copy p {
  margin-top: 14px;
}

.vp-faq-list {
  display: grid;
  gap: 10px;
}

.vp-faq-item {
  border-radius: 18px;
  border: 1px solid rgba(27, 111, 73, 0.13);
  background: #fbf8f3;
  overflow: hidden;
}

.vp-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  color: #13231b;
  font-weight: 900;
}

.vp-faq-item summary::-webkit-details-marker {
  display: none;
}

.vp-faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: #657065;
  font-size: 14px;
  line-height: 1.65;
}

.vp-community-footer {
  position: relative;
  margin-top: 18px;
  border-radius: 24px;
  overflow: hidden;
  color: white;
  background: #10251b;
}

.vp-footer-inner {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 5vw, 56px);
}

.vp-community-footer > img {
  position: absolute;
  inset: 0;
}

.vp-footer-hero {
  display: grid;
  justify-items: center;
  text-align: center;
}

.vp-community-footer h2 {
  max-width: 640px;
  margin: 16px 0 14px;
  color: white;
}

.vp-community-footer p {
  max-width: 520px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.76);
}

.vp-footer-logo {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  object-fit: cover;
  background: #1b6f49;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35), 0 18px 40px rgba(0, 0, 0, 0.24);
}

.vp-social-pills {
  justify-content: center;
  width: min(720px, 100%);
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.vp-social-pills a {
  flex: 1;
  min-width: 92px;
  border-color: rgba(27, 111, 73, 0.18);
  background: white;
  color: #1b6f49;
}

.vp-social-pills a:hover {
  background: #1b6f49;
  color: white;
}

.vp-footer-links {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.vp-footer-links h3 {
  margin: 0 0 12px;
  color: white;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vp-footer-links p,
.vp-footer-links a {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.65;
  text-decoration: none;
}

.vp-footer-links a:hover {
  color: white;
}

.vp-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

@media (max-width: 1120px) {
  .vp-editorial-nav nav {
    display: none;
  }

  .vp-editorial-nav {
    width: min(720px, calc(100% - 40px));
  }

  .vp-category-overlay {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .vp-nav-action-pill span {
    display: none;
  }

  .vp-category-overlay {
    grid-template-columns: 1fr;
    margin-top: -40px;
    gap: 14px;
  }

  .vp-category-overlay-card {
    min-height: 250px;
  }
}

@media (max-width: 900px) {
  .vp-home {
    padding: 18px 10px 18px;
  }

  .vp-site-shell {
    padding: 0;
    border-radius: 24px;
  }

  .vp-hero-card {
    min-height: 620px;
    border-radius: 24px 24px 0 0;
  }

  .vp-hero-badges {
    right: 22px;
  }

  .vp-category-grid,
  .vp-product-grid,
  .vp-ai-section,
  .vp-ai-demo,
  .vp-ai-embed-hero,
  .vp-faq-section,
  .vp-footer-links,
  .vp-split-heading {
    grid-template-columns: 1fr;
  }

  .vp-bestsellers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Bestseller carousel: stack vertically */
  .vp-bsc-inner {
    flex-direction: column;
    gap: 28px;
  }

  .vp-bsc-lead {
    flex: none;
    padding-top: 0;
    max-width: 540px;
  }

  .vp-bsc-nav {
    width: 36px;
    height: 36px;
  }

  /* Contact page */
  .vp-ct-hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .vp-ct-hero-visual {
    display: none;
  }

  .vp-ct-info-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: -24px;
  }

  .vp-ct-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 40px 60px;
  }

  .vp-ai-embed-page {
    padding: calc(var(--nav-height) + 34px) 12px 60px;
  }

  .vp-ai-embed-hero,
  .vp-ai-frame-section {
    width: min(100%, calc(100vw - 24px));
  }

  .vp-ai-embed-card {
    justify-self: start;
    width: 100%;
  }

  .vp-ai-frame-header {
    align-items: start;
    flex-direction: column;
  }

  .vp-ai-frame-shell iframe {
    min-height: 720px;
  }

  .vp-ai-live-page {
    padding: var(--nav-height) 0 0;
  }

  .vp-ai-live-frame {
    width: 100%;
    border-radius: 0;
  }

  .vp-ai-live-frame iframe {
    height: calc(100vh - var(--nav-height));
    min-height: 720px;
  }

  .vp-space-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vp-why-section {
    padding: 60px;
  }

  .vp-why-main {
    grid-template-columns: 1fr;
  }

  .vp-why-heading {
    max-width: 720px;
    padding-left: 0;
  }

  .vp-why-heading p {
    margin-top: 18px;
  }

  .vp-why-heading h2 {
    font-size: 48px;
  }

  .vp-why-card-grid,
  .vp-why-commitments {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vp-why-card {
    grid-column: auto;
    min-height: 300px;
  }

  .vp-why-card:nth-child(even),
  .vp-why-card:nth-child(even):hover {
    transform: none;
  }

  .vp-why-card:hover {
    transform: translateY(-6px);
  }

  .vp-why-commitments {
    margin-top: 36px;
  }

  .vp-space-large,
  .vp-space-wide {
    grid-row: auto;
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .vp-editorial-nav {
    width: calc(100% - 22px);
    top: 10px;
  }

  .vp-editorial-nav .container-vp {
    padding-inline: 12px;
  }

  .vp-editorial-nav .flex.items-center.gap-3 span {
    font-size: 17px !important;
  }

  .vp-hero-card {
    min-height: 570px;
    border-radius: 20px 20px 0 0;
  }

  .vp-hero-content {
    left: 22px;
    right: 22px;
    bottom: 112px;
  }

  .vp-hero-content h1 {
    font-size: clamp(42px, 15vw, 64px);
  }

  .vp-hero-content p {
    font-size: 15px;
  }

  .vp-hero-badges {
    left: 18px;
    top: 18px;
    right: 18px;
  }

  .vp-hero-down {
    display: none;
  }

  .vp-section,
  .vp-ai-section,
  .vp-video-section,
  .vp-faq-section {
    padding-top: 48px;
  }

  .vp-dark-card,
  .vp-dark-card:first-child {
    min-height: 290px;
  }

  .vp-product-info p {
    min-height: auto;
  }

  .vp-social-pills {
    border-radius: 24px;
  }

  .vp-social-pills a {
    flex-basis: 42%;
  }

  .vp-footer-logo {
    width: 92px;
    height: 92px;
  }

  .vp-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .vp-space-grid {
    grid-template-columns: 1fr;
  }

  .vp-why-section {
    margin-top: 56px;
    padding: 32px;
    border-radius: 26px;
  }

  .vp-why-main {
    gap: 28px;
  }

  .vp-why-heading h2 {
    font-size: 32px;
    letter-spacing: -0.04em;
  }

  .vp-why-heading p {
    font-size: 15px;
  }

  .vp-why-card-grid,
  .vp-why-commitments {
    grid-template-columns: 1fr;
  }

  .vp-why-card {
    grid-column: auto;
    min-height: 330px;
    padding: 0;
    border-radius: 22px;
  }

  .vp-why-card h3 {
    min-height: auto;
  }

  .vp-why-card-copy {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
    padding: 14px;
  }

  .vp-why-card-icon {
    width: 44px;
    height: 44px;
  }

  .vp-why-commitment {
    border-radius: 18px;
  }

  /* Contact page mobile */
  .vp-ct-hero {
    padding: 60px 0 52px;
  }

  .vp-ct-hero-copy h1 {
    font-size: clamp(34px, 10vw, 50px);
  }

  .vp-ct-hero-actions {
    gap: 14px;
  }

  .vp-ct-form-row {
    grid-template-columns: 1fr;
  }

  .vp-ct-map-frame {
    height: 280px;
    border-radius: 18px;
  }

  .vp-ct-map-overlay {
    padding: 20px 20px;
  }

  /* Bestsellers: 1 cột, card nằm ngang */
  .vp-bestsellers-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .vp-bs-card {
    flex-direction: row;
    align-items: stretch;
  }

  .vp-bs-media {
    flex-shrink: 0;
    width: 100px;
    aspect-ratio: 1;
    margin: 10px 0 10px 10px;
    border-radius: 12px;
  }

  .vp-bs-info {
    gap: 4px;
    padding: 10px 14px 12px;
    justify-content: center;
  }

  .vp-bs-info h3 {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }

  .vp-bs-sales {
    font-size: 10px;
    padding: 2px 8px;
  }

  .vp-bs-info strong {
    font-size: 15px;
  }

  .vp-bs-cta {
    font-size: 11px;
  }
}

/* ─── Typography ─── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.3;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-text-light); }

/* ─── Selection ─── */
::selection {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ─── Navigation ─── */
.nav-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background-color var(--transition-smooth), box-shadow var(--transition-smooth), backdrop-filter var(--transition-smooth);
}

.nav-scrolled {
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav-top {
  background-color: transparent;
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 31px;
  border: 1px solid var(--color-primary);
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  white-space: nowrap;
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: var(--color-text);
  transform: translateY(-1px);
}

/* ─── Hero ─── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-secondary);
  opacity: 0.8;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--color-secondary);
  opacity: 0.6;
}

/* ─── Section Titles ─── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background-color: var(--color-primary);
}

/* ─── Product Card ─── */
.product-card {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background-color: var(--color-bg-alt);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}

.product-card-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(250, 248, 245, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 2;
  border: none;
  cursor: pointer;
}

.product-card:hover .product-card-wishlist {
  opacity: 1;
}

/* ─── Category Card ─── */
.category-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  transition: background var(--transition-smooth);
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(27, 111, 73, 0.7) 0%, rgba(27, 111, 73, 0.2) 60%, transparent 100%);
}

/* ─── AI Feature ─── */
.ai-upload-zone {
  border: 2px dashed var(--color-border);
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.ai-upload-zone:hover {
  border-color: var(--color-primary);
  background-color: rgba(27, 111, 73, 0.03);
}

/* ─── Testimonial ─── */
.testimonial-card {
  background: var(--color-white);
  padding: 40px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.8;
  color: var(--color-primary);
  opacity: 0.15;
  position: absolute;
  top: 24px;
  left: 32px;
}

/* ─── Blog Card ─── */
.blog-card {
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.blog-card:hover .blog-card-title {
  color: var(--color-primary);
}

/* ─── Album Grid (Pinterest style) ─── */
.masonry-grid {
  columns: 3;
  column-gap: 16px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.masonry-item:hover img {
  transform: scale(1.04);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 111, 73, 0);
  transition: background var(--transition-smooth);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.masonry-item:hover .masonry-overlay {
  background: rgba(27, 111, 73, 0.7);
}

@media (max-width: 768px) {
  .masonry-grid {
    columns: 2;
  }
}

@media (max-width: 480px) {
  .masonry-grid {
    columns: 1;
  }
}

/* ─── Chatbot ─── */
.chatbot-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}

.chatbot-trigger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  border: none;
  transition: all var(--transition-spring);
}

.chatbot-trigger:hover {
  transform: scale(1.1);
  background-color: var(--color-primary-dark);
}

.chatbot-window {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: min(420px, calc(100vw - 32px));
  background: var(--color-white);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  max-height: min(720px, calc(100vh - 120px));
  border: 1px solid var(--color-border);
  border-radius: 28px;
  overflow: hidden;
  animation: chatSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes chatSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}

.chat-msg-bot {
  background: #f7f2ea;
  padding: 10px 14px;
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 92%;
  border-radius: 18px 18px 18px 6px;
  color: var(--color-text);
}

.chat-msg-user {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 10px 14px;
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 86%;
  border-radius: 18px 18px 6px 18px;
  align-self: flex-end;
}

.vp-assistant-header {
  background: linear-gradient(135deg, #1b6f49 0%, #12442f 100%);
  color: white;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.vp-assistant-header p {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
}

.vp-assistant-header span {
  display: block;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.45;
}

.vp-assistant-header button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.vp-assistant-messages {
  background: linear-gradient(180deg, #fffdf8 0%, #f7f2ea 100%);
  gap: 12px;
}

.vp-chat-msg p {
  margin: 0;
  white-space: pre-line;
}

.vp-chat-actions {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.vp-chat-action {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(27, 111, 73, 0.16);
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-primary);
  border-radius: 16px;
  padding: 11px 12px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.vp-chat-action:hover {
  transform: translateY(-1px);
  border-color: rgba(27, 111, 73, 0.38);
  background: white;
}

.vp-chat-action strong,
.vp-chat-action span {
  display: block;
}

.vp-chat-action span {
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.35;
  margin-top: 3px;
}

.vp-chat-action.urgent {
  background: #fff1f0;
  border-color: #fecaca;
  color: #b91c1c;
}

.vp-chat-back-menu {
  margin-top: 12px;
  border: none;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vp-chat-back-menu:hover {
  color: var(--color-primary-dark);
}

.vp-chat-products {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.vp-chat-product {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(27, 111, 73, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: inherit;
  text-decoration: none;
}

.vp-chat-product img {
  width: 74px;
  height: 74px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.vp-chat-product-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.vp-chat-product strong,
.vp-chat-product span,
.vp-chat-product b {
  display: block;
}

.vp-chat-product strong {
  font-size: 13px;
  line-height: 1.3;
}

.vp-chat-product span {
  color: var(--color-text-muted);
  font-size: 11.5px;
  line-height: 1.35;
  margin: 3px 0 4px;

  /* Truncate long short descriptions */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vp-chat-product b {
  color: var(--color-primary);
  font-size: 13px;
  margin-bottom: 7px;
}

.vp-chat-product-actions {
  display: flex;
  gap: 6px;
  margin-top: auto;
}

.vp-chat-btn-detail,
.vp-chat-btn-buy {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.vp-chat-btn-detail {
  background: transparent;
  border: 1.5px solid rgba(27, 111, 73, 0.35);
  color: var(--color-primary);
}

.vp-chat-btn-detail:hover {
  border-color: var(--color-primary);
}

.vp-chat-btn-buy {
  background: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  color: #fff;
}

.vp-chat-btn-buy:hover {
  opacity: 0.88;
}

.vp-chat-policy-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.vp-assistant-window {
  /* alias for chatbot-window when used via React embed */
}

.vp-chat-advice-card,
.vp-chat-mini-card,
.vp-chat-ticket {
  margin-top: 12px;
  padding: 13px;
  border: 1px solid rgba(27, 111, 73, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.vp-chat-advice-card span,
.vp-chat-advice-card strong {
  display: inline-block;
  margin-right: 8px;
}

.vp-chat-advice-card span {
  color: var(--color-text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vp-chat-advice-card strong {
  color: var(--color-primary);
  font-size: 16px;
}

.vp-chat-advice-card p,
.vp-chat-mini-card p,
.vp-chat-ticket p {
  margin: 8px 0 0;
  color: var(--color-text);
  font-size: 12.5px;
  line-height: 1.5;
}

.vp-chat-mini-card ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.45;
}

.vp-chat-mini-card code {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #e9f3ed;
  color: var(--color-primary);
  font-weight: 700;
}

.vp-chat-mini-card small {
  display: block;
  margin-top: 6px;
  color: var(--color-text-muted);
}

.vp-order-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 10px;
}

.vp-order-steps span {
  padding: 6px 4px;
  border-radius: 999px;
  background: #ede8dd;
  color: var(--color-text-muted);
  font-size: 10px;
  text-align: center;
}

.vp-order-steps span.active {
  background: var(--color-primary);
  color: white;
}

.vp-chat-ticket {
  background: #f0f8f3;
}

.vp-chat-ticket.urgent {
  background: #fff1f0;
  border-color: #fecaca;
}

.vp-chat-ticket strong,
.vp-chat-ticket span {
  display: inline-flex;
  margin-right: 8px;
}

.vp-chat-ticket strong {
  color: var(--color-primary);
}

.vp-chat-ticket.urgent strong {
  color: #b91c1c;
}

.vp-chat-form {
  padding: 12px 14px;
  border-top: 1px solid rgba(27, 111, 73, 0.12);
  background: #fffdf8;
  display: grid;
  gap: 8px;
}

.vp-chat-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.vp-chat-form input,
.vp-chat-form textarea,
.vp-assistant-input input {
  width: 100%;
  border: 1px solid rgba(27, 111, 73, 0.18);
  background: white;
  color: var(--color-text);
  border-radius: 14px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
}

.vp-chat-form textarea {
  resize: vertical;
  min-height: 72px;
}

.vp-chat-form button,
.vp-assistant-input button {
  border: none;
  border-radius: 999px;
  background: var(--color-primary);
  color: white;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
}

.vp-chat-form-cancel {
  background: transparent !important;
  color: var(--color-text-muted) !important;
  border: 1px solid var(--color-border) !important;
  font-weight: 500 !important;
}

.vp-chat-file-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
}

.vp-chat-file-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1.5px dashed rgba(27, 111, 73, 0.3);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  white-space: nowrap;
  background: rgba(27, 111, 73, 0.04);
}

.vp-chat-file-hidden {
  display: none;
}

.vp-chat-demo-note {
  display: block;
  font-size: 11px;
  color: #92400e;
  background: #fef3c7;
  padding: 4px 8px;
  border-radius: 8px;
  margin-top: 4px;
}

.vp-chat-size-note {
  display: block;
  font-size: 11.5px;
  color: var(--color-text-muted);
  margin-top: 6px;
  font-style: italic;
}

.vp-assistant-input {
  padding: 12px 14px;
  border-top: 1px solid rgba(27, 111, 73, 0.12);
  background: white;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.vp-chat-loading {
  opacity: 0.72;
  font-style: italic;
}

.vp-assistant-label {
  display: none !important;
}

@media (max-width: 640px) {
  .chatbot-bubble {
    right: 16px;
    bottom: 16px;
  }

  .chatbot-window {
    right: -4px;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 96px);
    border-radius: 24px;
  }

  .vp-order-steps {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── Filter sidebar ─── */
.filter-checkbox {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  position: relative;
}

.filter-checkbox:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.filter-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 8px;
  height: 12px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* ─── Range input ─── */
input[type="range"] {
  appearance: none;
  width: 100%;
  height: 2px;
  background: var(--color-border);
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
}

/* ─── Animations ─── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes pulse-slow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.animate-fade-in-up {
  animation: fadeInUp 0.7s ease forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }

/* ─── Divider ─── */
.decorative-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  margin: 24px 0;
}

/* ─── Tag ─── */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  background: var(--color-secondary);
  color: var(--color-primary);
}

.tag-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ─── Color Swatch ─── */
.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: transform var(--transition-fast);
  border: 2px solid transparent;
}

.color-swatch:hover, .color-swatch.active {
  transform: scale(1.15);
  border-color: var(--color-text);
  outline: 2px solid var(--color-bg);
  outline-offset: -4px;
}

/* ─── Loading skeleton ─── */
.skeleton {
  background: linear-gradient(90deg, var(--color-bg-alt) 25%, var(--color-border) 50%, var(--color-bg-alt) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ─── Star rating ─── */
.stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent);
}

/* ─── Utility ─── */
.text-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.border-decorative {
  border: 1px solid var(--color-border);
}

.hover-lift {
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Container */
.container-vp {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container-vp {
    padding: 0 20px;
  }
}

/* ─── 3D Viewer Placeholder ─── */
.viewer-3d {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.viewer-3d::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(27, 111, 73, 0.1) 0%, transparent 70%);
}

/* ─── Newsletter ─── */
.newsletter-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  color: white;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 0;
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-input:focus {
  border-bottom-color: rgba(255,255,255,0.9);
}

/* Progress indicator */
.progress-bar {
  height: 3px;
  background: var(--color-primary);
  position: fixed;
  top: var(--nav-height);
  left: 0;
  z-index: 999;
  transition: width 0.1s linear;
}

/* Smooth image loading */
img {
  transition: opacity 0.3s ease;
}

img[loading="lazy"] {
  opacity: 1;
}

img.loaded {
  opacity: 1;
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}

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

/* Sticky CTA bar */
.sticky-cta {
  position: sticky;
  bottom: 0;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-border);
  z-index: 100;
  padding: 16px 20px;
}

/* Homepage header final overrides.
   These stay after the legacy nav rules so the editorial shell alignment wins. */
.nav-sticky.vp-editorial-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  right: auto;
  width: min(1680px, calc(100vw - 60px));
  height: 68px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 45px rgba(7, 32, 24, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  transition:
    top 0.3s ease,
    width 0.3s ease,
    height 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.nav-sticky.vp-editorial-nav.nav-scrolled {
  top: 14px;
  height: 62px;
  background: rgba(27, 111, 73, 0.96);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 22px 65px rgba(7, 32, 24, 0.28);
}

.nav-sticky.vp-editorial-nav .container-vp {
  height: 100%;
  max-width: none;
  padding: 0 16px 0 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.nav-sticky.vp-editorial-nav nav {
  justify-self: center;
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
}

.nav-sticky.vp-editorial-nav nav a {
  padding: 9px 15px !important;
}

.nav-sticky.vp-editorial-nav .flex.items-center.gap-3:last-child {
  justify-self: end;
}

@media (max-width: 1180px) {
  .vp-site-shell,
  .nav-sticky.vp-editorial-nav {
    width: calc(100vw - 28px);
  }
}

@media (max-width: 1120px) {
  .nav-sticky.vp-editorial-nav .container-vp {
    display: flex;
  }

  .nav-sticky.vp-editorial-nav nav {
    display: none;
  }
}

@media (max-width: 620px) {
  .nav-sticky.vp-editorial-nav {
    top: 10px;
    width: calc(100vw - 20px);
    height: 56px;
  }
}

/* ─── Shop Page Redesign ─── */
.vp-section-kicker {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vp-shop-page {
  width: min(1680px, calc(100vw - 60px));
  margin: 0 auto;
  padding: 104px 0 80px;
}

.vp-shop-hero {
  position: relative;
  min-height: clamp(340px, 39vw, 560px);
  display: flex;
  align-items: flex-end;
  padding: 54px 52px 54px;
  border-radius: 34px;
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(180deg, rgba(17, 17, 17, 0.04) 0%, rgba(17, 17, 17, 0.22) 100%),
    url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?w=1800&q=85');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(27, 111, 73, 0.1);
  box-shadow: 0 30px 90px rgba(17, 17, 17, 0.1);
}

.vp-shop-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.52) 100%);
  backdrop-filter: saturate(0.88);
}

.vp-shop-hero-copy {
  position: relative;
  width: 100%;
}

.vp-shop-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(98px, 16.5vw, 252px);
  line-height: 0.78;
  letter-spacing: 0;
  font-weight: 950;
  text-shadow: 0 22px 70px rgba(17, 17, 17, 0.24);
}

.vp-shop-hero p:not(.vp-section-kicker) {
  position: relative;
  z-index: 3;
  max-width: 560px;
  margin: -8px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 21px;
  font-weight: 700;
  text-shadow: 0 10px 30px rgba(17, 17, 17, 0.22);
}

.vp-shop-hero .vp-section-kicker {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 0 10px 30px rgba(17, 17, 17, 0.24);
}

.vp-shop-search-sticky-wrap {
  position: sticky;
  top: var(--vp-header-h, 96px);
  z-index: 20;
  margin-top: -34px;
  margin-bottom: 24px;
  pointer-events: none;
}

.vp-shop-search {
  pointer-events: auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(180px, auto) auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 12px 12px 22px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(17, 17, 17, 0.16);
  border: 1px solid rgba(27, 111, 73, 0.1);
}

/* SHOP_CATEGORY_DROPDOWN_PREMIUM_2026 */

/* SHOP_DROPDOWN_TOGGLE_AND_FILTER_SIDEBAR_2026 */

.vp-category-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.vp-category-trigger {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 160px;
  max-width: 230px;
  padding: 9px 13px;
  border: none;
  border-radius: 14px;
  background: #1b6f49;
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-align: left;
  transition: background 0.14s, box-shadow 0.14s;
  white-space: nowrap;
  overflow: hidden;
}

.vp-category-trigger:hover {
  background: #14543a;
}

.vp-category-dropdown.is-open .vp-category-trigger,
.vp-category-trigger[aria-expanded="true"] {
  background: #14543a;
  box-shadow: 0 0 0 3px rgba(27, 111, 73, 0.22);
  outline: none;
}

.vp-category-trigger:focus-visible {
  outline: 2px solid rgba(27, 111, 73, 0.5);
  outline-offset: 2px;
}

.vp-category-trigger-label {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vp-category-trigger svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.75);
  transition: transform 0.2s ease;
}

.vp-category-dropdown.is-open .vp-category-trigger svg,
.vp-category-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
  color: #fff;
}

.vp-category-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 200;
  width: clamp(280px, 380px, 420px);
  max-height: 370px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: #fff;
  box-shadow:
    0 24px 64px rgba(17, 17, 17, 0.15),
    0 6px 18px rgba(17, 17, 17, 0.08),
    0 0 0 1px rgba(27, 111, 73, 0.1);
  overflow: hidden;
  /* Closed by default */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.vp-category-dropdown.is-open .vp-category-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.vp-category-search-wrap {
  padding: 12px 12px 8px;
  background: rgba(27, 111, 73, 0.03);
  border-bottom: 1px solid rgba(27, 111, 73, 0.08);
}

.vp-category-search {
  display: block;
  width: 100%;
  border: 1.5px solid rgba(27, 111, 73, 0.18);
  border-radius: 11px;
  padding: 8px 12px;
  font: inherit;
  font-size: 13px;
  color: #111;
  background: #fff;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.12s;
}

.vp-category-search:focus {
  border-color: rgba(27, 111, 73, 0.5);
}

.vp-category-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(27, 111, 73, 0.2) transparent;
}

.vp-category-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 9px 11px;
  border-radius: 11px;
  color: #111;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.1s;
  box-sizing: border-box;
}

.vp-category-option:hover {
  background: rgba(27, 111, 73, 0.07);
  color: #14543a;
}

.vp-category-option.active {
  background: #1b6f49;
  color: #fff;
  font-weight: 700;
}

.vp-category-option[data-vp-depth="1"] {
  padding-left: 22px;
  font-size: 13px;
  font-weight: 400;
}

.vp-category-option[data-vp-depth="2"] {
  padding-left: 36px;
  font-size: 12.5px;
  font-weight: 400;
}

.vp-category-option-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vp-category-option-count {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.38);
  background: rgba(17, 17, 17, 0.05);
  border-radius: 999px;
  padding: 1px 7px;
  line-height: 1.6;
}

.vp-category-option.active .vp-category-option-count {
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.18);
}

.vp-shop-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: #111;
  font: inherit;
  background: transparent;
}

.vp-shop-search button:not(.vp-category-trigger) {
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  color: #fff;
  background: #1b6f49;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.14s;
}

.vp-shop-search button:not(.vp-category-trigger):hover {
  background: #14543a;
}

.vp-shop-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  padding: 0 0 72px;
}

.vp-shop-sidebar {
  position: sticky;
  top: 112px;
  align-self: start;
  margin-top: 20px;
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(27, 111, 73, 0.12);
  box-shadow: 0 24px 70px rgba(20, 44, 35, 0.08);
  backdrop-filter: blur(18px);
}

.vp-shop-filter-heading {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #111;
  font-size: 16px;
  font-weight: 900;
}

.vp-shop-filter-group {
  display: grid;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(27, 111, 73, 0.1);
}

.vp-shop-filter-group h2 {
  margin: 0 0 4px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vp-shop-filter-group button,
.vp-shop-filter-group select {
  width: 100%;
  border: 1px solid rgba(27, 111, 73, 0.12);
  border-radius: 16px;
  padding: 11px 12px;
  color: rgba(17, 17, 17, 0.72);
  background: #fff;
  font: inherit;
  text-align: left;
}

.vp-shop-filter-group button {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.vp-shop-filter-group button.active {
  color: #fff;
  background: #1b6f49;
}

.vp-shop-range {
  accent-color: #1b6f49;
}

.vp-shop-price-row {
  display: flex;
  justify-content: space-between;
  color: rgba(17, 17, 17, 0.55);
  font-size: 13px;
}

.vp-shop-price-row strong {
  color: #1b6f49;
}

.vp-shop-ai-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(145deg, #1b6f49, #0d3b2a);
  box-shadow: 0 20px 50px rgba(27, 111, 73, 0.2);
}

.vp-shop-ai-card h3,
.vp-shop-ai-card p {
  margin: 0;
}

.vp-shop-ai-card p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.vp-shop-ai-card a {
  width: fit-content;
  margin-top: 6px;
  padding: 11px 16px;
  border-radius: 999px;
  color: #1b6f49;
  background: #fff;
  font-weight: 900;
  text-decoration: none;
}

.vp-shop-results {
  min-width: 0;
}

.vp-shop-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}

.vp-shop-toolbar p {
  margin: 0;
  color: rgba(17, 17, 17, 0.58);
}

.vp-shop-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vp-shop-tabs button {
  border: 1px solid rgba(27, 111, 73, 0.14);
  border-radius: 999px;
  padding: 11px 18px;
  color: #111;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.vp-shop-tabs button.active {
  color: #fff;
  background: #1b6f49;
}

/* SHOP_GRID_4_COLUMNS_PAGINATION_2026 */
.vp-shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.vp-shop-product-card {
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.vp-shop-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.11);
}

.vp-shop-product-image {
  position: relative;
  display: block;
  aspect-ratio: 1.08;
  overflow: hidden;
  background: #f7f2ea;
}

.vp-shop-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.vp-shop-product-card:hover .vp-shop-product-image img {
  transform: scale(1.06);
}

.vp-shop-product-image span,
.vp-shop-cat-label {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #111;
  background: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

/* Sale badge overrides the generic span positioning */
.vp-shop-product-image .vp-shop-sale-badge {
  top: 12px;
  right: auto;
  left: 12px;
  padding: 5px 10px;
  color: #fff;
  background: #c0392b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  pointer-events: none;
  backdrop-filter: none;
}

.vp-shop-product-body {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.vp-shop-product-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.vp-shop-rating,
.vp-pdp-rating {
  display: flex;
  gap: 4px;
  align-items: center;
  color: #f0a500;
  font-size: 13px;
}

.vp-shop-rating span,
.vp-pdp-rating span {
  margin-left: 4px;
  color: rgba(17, 17, 17, 0.56);
}

.vp-shop-product-price-row {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.vp-shop-product-price-row strong {
  color: #1b6f49;
  font-size: 18px;
}

.vp-shop-product-price-row del {
  color: rgba(17, 17, 17, 0.42);
  font-size: 13px;
}

/* Card highlight when on sale */
.vp-shop-product-card.is-on-sale .vp-shop-product-image {
  background: #fdf5f4;
}

/* No-products fallback (WC active but no products, or WC off) */
.vp-shop-no-products {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 80px 20px;
  border-radius: 28px;
  background: #fff;
  text-align: center;
  color: rgba(17, 17, 17, 0.6);
}

.vp-shop-no-products span {
  font-size: 40px;
  line-height: 1;
}

.vp-shop-no-products h2 {
  margin: 0;
  font-size: 20px;
  color: #111;
}

.vp-shop-no-products p {
  margin: 0;
  font-size: 14px;
}

.vp-shop-product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 4px;
}

.vp-shop-product-actions a {
  display: inline-flex;
  min-height: 36px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  padding: 0 10px;
}

.vp-shop-cart-btn {
  color: #1b6f49;
  background: #f1e6d6;
}

.vp-shop-buy-btn {
  color: #fff;
  background: #111;
}

.vp-shop-empty {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 80px 20px;
  border-radius: 28px;
  background: #fff;
  color: rgba(17, 17, 17, 0.66);
}

.vp-shop-empty h2,
.vp-shop-empty p {
  margin: 0;
}

.vp-shop-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 40px 0 8px;
  flex-wrap: wrap;
}

.vp-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 8px;
  border-radius: 10px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #111;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.1);
  cursor: pointer;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
  box-sizing: border-box;
}

.vp-page-btn:hover {
  background: rgba(27, 111, 73, 0.08);
  border-color: rgba(27, 111, 73, 0.28);
  color: #1b6f49;
}

.vp-page-num.is-current {
  background: #1b6f49;
  color: #fff;
  border-color: #1b6f49;
  font-weight: 700;
  cursor: default;
  pointer-events: none;
}

.vp-page-arrow {
  font-size: 17px;
  font-weight: 400;
}

.vp-page-btn.is-disabled {
  opacity: 0.28;
  cursor: default;
  pointer-events: none;
}

.vp-page-ellipsis {
  min-width: 24px;
  border: none;
  background: none;
  color: rgba(17, 17, 17, 0.4);
  cursor: default;
  padding: 0;
  font-size: 16px;
}

.vp-shop-recommend,
.vp-shop-newsletter {
  margin-top: 28px;
}

.vp-shop-section-head,
.vp-pdp-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
}

.vp-shop-section-head h2,
.vp-pdp-section-head h2 {
  margin: 0;
  color: #111;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.95;
  font-weight: 900;
}

.vp-shop-rec-arrows,
.vp-pdp-section-head > div {
  display: flex;
  gap: 8px;
}

.vp-shop-rec-arrows button,
.vp-pdp-section-head button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(27, 111, 73, 0.14);
  border-radius: 50%;
  color: #1b6f49;
  background: #fff;
}

.vp-shop-rec-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 20px;
  overflow-x: auto;
  padding: 4px 0 14px;
  scroll-snap-type: x mandatory;
}

.vp-shop-rec-scroll .vp-shop-product-card {
  scroll-snap-align: start;
}

.vp-shop-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 28px;
  align-items: end;
  padding: 42px;
  border-radius: 32px;
  color: #fff;
  background: linear-gradient(135deg, #101816 0%, #1b6f49 100%);
}

.vp-shop-newsletter h2,
.vp-shop-newsletter p {
  margin: 0;
}

.vp-shop-newsletter h2 {
  max-width: 520px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.95;
}

.vp-shop-newsletter p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
  margin-top: 14px;
}

.vp-shop-newsletter form {
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.vp-shop-newsletter input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  padding: 0 14px;
  font: inherit;
}

.vp-shop-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.vp-shop-newsletter button {
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  color: #1b6f49;
  background: #fff;
  font-weight: 900;
}

/* ═══════════════════════════════════════════════════════
   SHOP PAGE — Full-bleed layout — SHOP_LAYOUT_FIXED_2026
   body class: vp-is-shop  (added via body_class filter in functions.php)
   page-template-page-shop-php KHÔNG dùng — template load qua
   template_include filter (is_shop()), không phải Page Template dropdown.
═══════════════════════════════════════════════════════ */

/* 1. Mở rộng vp-content-shell giống body.home override trong header.php */
body.vp-is-shop .vp-content-shell {
  width: 100% !important;
  margin-top: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

/* 2. vp-shop-page: full-width, nav đè lên banner, bỏ padding top */
body.vp-is-shop .vp-shop-page {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #f7f2ea !important;
}

/* 3. Hero: full-bleed edge-to-edge, bỏ border-radius / border / shadow */
body.vp-is-shop .vp-shop-hero {
  min-height: clamp(420px, 34vw, 500px);
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

/* 4. Cụm nội dung hero: phân cấp rõ, cân ở vùng trái-dưới banner */
body.vp-is-shop .vp-shop-hero-copy {
  display: flex;
  max-width: 880px;
  flex-direction: column;
  align-items: flex-start;
}

body.vp-is-shop .vp-shop-hero .vp-section-kicker {
  margin: 0 0 16px !important;
  font-size: 13px;
  line-height: 1.2;
}

body.vp-is-shop .vp-shop-hero h1 {
  margin: 0 0 18px !important;
  font-size: clamp(64px, 9vw, 144px) !important;
  line-height: 0.88 !important;
}

body.vp-is-shop .vp-shop-hero p:not(.vp-section-kicker) {
  max-width: 640px;
  margin: 0 !important;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.35;
}

/* 5. Wrapper nội dung dưới hero: nền be (#f7f2ea) full-width */
body.vp-is-shop .vp-shop-body {
  background: #f7f2ea;
  width: 100%;
}

body.vp-is-shop .vp-shop-body-inner {
  width: min(1680px, calc(100vw - 60px));
  margin: 0 auto;
  padding-bottom: 80px;
}

/* Sidebar sticks just below the fixed header */
body.vp-is-shop .vp-shop-sidebar {
  top: 120px;
}

/* VIETPOT_SHOP_FILTER_ACCORDION_SCROLL_FIX_2026 */

/* Sidebar scroll: overflow hidden by default, auto khi hover/focus-within.
   overscroll-behavior: contain ngăn scroll lan sang trang khi sidebar đã đến cuối. */
body.vp-is-shop .vp-shop-sidebar {
  max-height: calc(100vh - 120px - 24px);
  overflow-y: hidden;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(27, 111, 73, 0.28) transparent;
}

body.vp-is-shop .vp-shop-sidebar:hover,
body.vp-is-shop .vp-shop-sidebar:focus-within {
  overflow-y: auto;
}

body.vp-is-shop .vp-shop-sidebar::-webkit-scrollbar {
  width: 4px;
}

body.vp-is-shop .vp-shop-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

body.vp-is-shop .vp-shop-sidebar::-webkit-scrollbar-thumb {
  background: rgba(27, 111, 73, 0.28);
  border-radius: 99px;
}

/* Sticky search bar: elevated shadow when scrolled */
.vp-shop-search-sticky-wrap.is-stuck .vp-shop-search {
  box-shadow: 0 6px 24px rgba(17, 17, 17, 0.12), 0 1px 4px rgba(17, 17, 17, 0.06);
  border-color: rgba(27, 111, 73, 0.18);
}

/* ─── Filter sidebar sections ──────────────────────────────────────────────── */

.vp-filter-section {
  padding-top: 14px;
  border-top: 1px solid rgba(27, 111, 73, 0.1);
}

.vp-filter-section-title {
  margin: 0 0 10px;
  color: rgba(17, 17, 17, 0.5);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Category link items */
.vp-filter-cats {
  display: grid;
  gap: 3px;
}

.vp-filter-cat-leaf,
.vp-filter-cat-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  color: #596660;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}

.vp-filter-cat-leaf {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #26342d;
  border: 1px solid rgba(27, 111, 73, 0.14);
  background: rgba(255, 255, 255, 0.86);
  margin-bottom: 2px;
}

.vp-filter-cat-leaf:hover,
.vp-filter-cat-child:hover {
  background: rgba(27, 111, 73, 0.07);
  color: #1b6f49;
}

.vp-filter-cat-leaf.active {
  border-color: #1b6f49;
  color: #fff;
  background: #1b6f49;
}

.vp-filter-cat-child.active {
  color: #14543a;
  font-weight: 700;
  background: rgba(27, 111, 73, 0.11);
  box-shadow: inset 3px 0 0 #1b6f49;
}

/* VIETPOT_SHOP_CATEGORY_ACCORDION_NO_RELOAD_FIX_2026 */
/* Category parent header row (now a div, not summary) */
.vp-filter-cat-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(27, 111, 73, 0.14);
  border-radius: 12px;
  color: #26342d;
  background: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  user-select: none;
  -webkit-user-select: none;
  transition: background 0.12s ease, border-color 0.12s ease;
  margin-bottom: 2px;
}

.vp-filter-cat-parent:hover {
  background: #f4f8f5;
  border-color: rgba(27, 111, 73, 0.3);
}

.vp-filter-cat-parent.active {
  border-color: #1b6f49;
  color: #fff;
  background: #1b6f49;
}

.vp-filter-branch.is-open > .vp-filter-cat-parent:not(.active) {
  background: #f4f8f5;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-color: rgba(27, 111, 73, 0.06);
}

.vp-filter-cat-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* <a> filter link: inherit color, no underline */
a.vp-filter-cat-name {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.vp-filter-cat-parent.active a.vp-filter-cat-name {
  color: #fff;
}

/* Toggle button (chevron + count) */
.vp-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  border: none;
  background: transparent;
  padding: 4px 2px;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
}

.vp-filter-toggle small {
  font-size: 12px;
  font-weight: 800;
  opacity: 0.7;
}

.vp-filter-toggle i {
  display: inline-block;
  font-size: 13px;
  font-style: normal;
  line-height: 1;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.vp-filter-branch:not(.is-open) .vp-filter-toggle i {
  transform: rotate(-90deg);
}

/* Filter options (price/rating/promo/stock) */
.vp-filter-opts {
  display: grid;
  gap: 2px;
}

.vp-filter-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #596660;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}

.vp-filter-opt:hover {
  background: rgba(27, 111, 73, 0.07);
  color: #1b6f49;
}

.vp-filter-opt.active {
  color: #14543a;
  font-weight: 700;
  background: rgba(27, 111, 73, 0.11);
}

.vp-filter-opt-stars {
  letter-spacing: 0.02em;
}

/* Checkbox-style toggle */
.vp-filter-checkbox {
  display: inline-flex;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(27, 111, 73, 0.35);
  border-radius: 4px;
  background: #fff;
  transition: background 0.12s, border-color 0.12s;
}

.vp-filter-opt-check.active .vp-filter-checkbox {
  border-color: #1b6f49;
  background: #1b6f49;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 4' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.vp-filter-section--links {
  display: grid;
  gap: 6px;
}

/* ─── Active filter chips ─────────────────────────────────────────────────── */

.vp-active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(27, 111, 73, 0.05);
  border: 1px solid rgba(27, 111, 73, 0.1);
}

.vp-active-filters-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.5);
  flex-shrink: 0;
}

.vp-active-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
}

.vp-active-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #1b6f49;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.12s ease, opacity 0.12s ease;
}

.vp-active-chip:hover {
  background: #14543a;
  color: #fff;
}

.vp-active-chip span {
  font-size: 15px;
  line-height: 1;
  opacity: 0.8;
  font-weight: 400;
}

.vp-clear-filters {
  flex-shrink: 0;
  color: rgba(17, 17, 17, 0.5);
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-style: dotted;
  transition: color 0.12s ease;
}

.vp-clear-filters:hover {
  color: #c0392b;
}

/* Sort tabs — now <a> tags */
.vp-shop-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: rgba(17, 17, 17, 0.6);
  background: transparent;
  transition: background 0.12s, color 0.12s;
}

.vp-shop-tabs a.active {
  color: #fff;
  background: #1b6f49;
}

.vp-shop-tabs a:hover:not(.active) {
  background: rgba(27, 111, 73, 0.08);
  color: #1b6f49;
}

/* Product category tree */
.vp-filter-group {
  gap: 6px;
}

.vp-filter-branch {
  width: 100%;
}

.vp-filter-branch > summary {
  list-style: none;
  user-select: none;
  -webkit-user-select: none;
}

.vp-filter-branch > summary::-webkit-details-marker {
  display: none;
}

.vp-filter-parent,
.vp-shop-filter-group button.vp-filter-parent {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 11px 13px;
  border: 1px solid rgba(27, 111, 73, 0.14);
  border-radius: 15px;
  color: #26342d;
  background: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.055em;
  line-height: 1.3;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease,
    border-radius 0.1s ease;
}

.vp-filter-parent:hover {
  border-color: rgba(27, 111, 73, 0.34);
  background: #f4f8f5;
}

/* When accordion is open, square off the bottom corners so it flows into children */
.vp-filter-branch[open] > summary.vp-filter-parent {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-color: rgba(27, 111, 73, 0.06);
  background: #f4f8f5;
}

.vp-filter-parent.active,
.vp-shop-filter-group button.vp-filter-parent.active {
  border-color: #1b6f49;
  color: #fff;
  background: #1b6f49;
}

/* Keep active summary looking active even when open */
.vp-filter-branch[open] > summary.vp-filter-parent.active {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  background: #1b6f49;
}

.vp-filter-meta {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
}

.vp-filter-meta small {
  font-size: 12px;
  font-weight: 800;
  opacity: 0.7;
}

.vp-filter-meta i {
  display: inline-block;
  font-size: 13px;
  font-style: normal;
  line-height: 1;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Closed state: arrow points right */
.vp-filter-branch:not([open]) > summary.vp-filter-parent .vp-filter-meta i {
  transform: rotate(-90deg);
}

.vp-filter-children {
  display: grid;
  gap: 4px;
  margin: 4px 0 8px 14px;
  padding-left: 12px;
  border-left: 2px solid rgba(27, 111, 73, 0.15);
}

.vp-shop-filter-group button.vp-filter-child {
  min-height: 38px;
  padding: 8px 11px;
  border-color: transparent;
  border-radius: 10px;
  color: #596660;
  background: transparent;
  font-size: 13px;
  font-weight: 550;
  text-transform: none;
  letter-spacing: 0;
  transition: background 0.12s ease, color 0.12s ease;
}

.vp-shop-filter-group button.vp-filter-child:hover {
  color: #1b6f49;
  background: rgba(27, 111, 73, 0.07);
}

.vp-shop-filter-group button.vp-filter-child.active {
  color: #14543a;
  font-weight: 700;
  border-color: rgba(27, 111, 73, 0.16);
  background: rgba(27, 111, 73, 0.11);
  box-shadow: inset 3px 0 0 #1b6f49;
}

.vp-filter-all {
  margin-bottom: 4px !important;
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0;
}

@media (max-width: 1180px) {
  body.vp-is-shop .vp-shop-body-inner {
    width: calc(100vw - 28px);
  }
  body.vp-is-shop .vp-shop-page {
    width: 100% !important;
  }
}

@media (max-width: 640px) {
  body.vp-is-shop .vp-shop-page {
    width: 100% !important;
    padding: 0 !important;
  }
  body.vp-is-shop .vp-shop-body-inner {
    width: calc(100vw - 18px);
  }
  body.vp-is-shop .vp-shop-hero {
    border-radius: 0 !important;
    min-height: 300px;
  }
  body.vp-is-shop .vp-shop-hero h1 {
    margin-bottom: 12px !important;
    font-size: clamp(54px, 14vw, 86px) !important;
    line-height: 0.9 !important;
  }
  body.vp-is-shop .vp-shop-hero .vp-section-kicker {
    margin-bottom: 10px !important;
    font-size: 11px;
  }
  .vp-filter-parent,
  .vp-shop-filter-group button.vp-filter-parent {
    min-height: 46px;
  }
  .vp-shop-filter-group button.vp-filter-child {
    min-height: 44px;
  }
}

/* ─── Product Detail Redesign ─── */
.vp-pdp-page {
  width: min(1500px, calc(100vw - 60px));
  margin: 0 auto;
  padding: 128px 0 80px;
}

.vp-pdp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 0 0 20px;
  color: rgba(17, 17, 17, 0.56);
  font-size: 14px;
}

.vp-pdp-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.vp-pdp-breadcrumb strong {
  color: #111;
}

.vp-pdp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 40px;
  padding: 28px;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(17, 17, 17, 0.08);
}

.vp-pdp-gallery {
  display: grid;
  gap: 14px;
}

.vp-pdp-main-image {
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 26px;
  background: #f7f2ea;
}

.vp-pdp-main-image img,
.vp-pdp-thumbs img,
.vp-pdp-related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vp-pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.vp-pdp-thumbs button {
  display: grid;
  gap: 7px;
  border: 0;
  background: transparent;
  padding: 0;
  color: rgba(17, 17, 17, 0.6);
  font-size: 12px;
  font-weight: 700;
}

.vp-pdp-thumbs button img {
  aspect-ratio: 1.08;
  overflow: hidden;
  border-radius: 16px;
  border: 2px solid transparent;
  background: #f7f2ea;
}

.vp-pdp-thumbs button.active img {
  border-color: #111;
}

.vp-pdp-summary {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 10px 6px;
}

.vp-pdp-category {
  width: fit-content;
  border-radius: 999px;
  padding: 8px 13px;
  color: #1b6f49;
  background: #f1e6d6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vp-pdp-summary h1 {
  margin: 0;
  color: #111;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.95;
  font-weight: 950;
}

.vp-pdp-short {
  max-width: 620px;
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: 18px;
  line-height: 1.7;
}

.vp-pdp-price {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.vp-pdp-price del {
  color: rgba(17, 17, 17, 0.38);
  font-size: 19px;
}

.vp-pdp-price strong {
  color: #1b6f49;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}

.vp-pdp-price span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #0f5136;
  background: rgba(27, 111, 73, 0.12);
  font-weight: 900;
}

.vp-pdp-option {
  display: grid;
  gap: 12px;
}

.vp-pdp-option-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.vp-pdp-option-head h2 {
  margin: 0;
  color: #111;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.vp-pdp-option-head span {
  color: rgba(17, 17, 17, 0.55);
  font-size: 13px;
}

.vp-pdp-color-row,
.vp-pdp-size-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vp-pdp-color-row button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  outline: 1px solid rgba(17, 17, 17, 0.12);
  cursor: pointer;
}

.vp-pdp-color-row button.active {
  outline: 3px solid #111;
}

.vp-pdp-size-row button {
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  padding: 11px 18px;
  color: #111;
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.vp-pdp-size-row button.active {
  color: #fff;
  background: #1b6f49;
}

.vp-pdp-quantity-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.vp-pdp-quantity-row > span {
  color: rgba(17, 17, 17, 0.6);
  font-weight: 800;
}

.vp-pdp-quantity {
  display: inline-grid;
  grid-template-columns: 44px 52px 44px;
  align-items: center;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.vp-pdp-quantity button {
  height: 44px;
  border: 0;
  color: #111;
  background: #fff;
  cursor: pointer;
}

.vp-pdp-quantity span {
  text-align: center;
  font-weight: 900;
}

.vp-pdp-cta-row {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 12px;
}

.vp-pdp-cta-row a {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  text-decoration: none;
}

.vp-pdp-add {
  background: #1b6f49;
}

.vp-pdp-buy {
  background: #111;
}

.vp-pdp-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 18px 0 58px;
}

.vp-pdp-trust div {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  color: #111;
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.05);
  font-weight: 900;
}

.vp-pdp-trust svg {
  color: #1b6f49;
}

.vp-pdp-why,
.vp-pdp-reviews,
.vp-pdp-faq,
.vp-pdp-related,
.vp-pdp-mini-footer {
  margin-top: 54px;
}

.vp-pdp-why h2,
.vp-pdp-faq h2 {
  margin: 0 0 24px;
  color: #111;
  font-size: clamp(32px, 5vw, 58px);
  text-align: center;
}

.vp-pdp-why > div,
.vp-pdp-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.vp-pdp-why article,
.vp-pdp-reviews article {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(17, 17, 17, 0.06);
}

.vp-pdp-why article span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #1b6f49;
  background: #f1e6d6;
}

.vp-pdp-why h3,
.vp-pdp-why p,
.vp-pdp-reviews p {
  margin: 14px 0 0;
}

.vp-pdp-why p,
.vp-pdp-reviews p,
.vp-pdp-section-head p {
  color: rgba(17, 17, 17, 0.64);
  line-height: 1.65;
}

.vp-pdp-review-top {
  display: flex;
  gap: 12px;
  align-items: center;
}

.vp-pdp-review-top > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #1b6f49;
  font-weight: 900;
}

.vp-pdp-review-top .vp-pdp-rating span,
.vp-pdp-review-top .vp-pdp-rating strong {
  display: none;
}

.vp-pdp-faq > div {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(17, 17, 17, 0.06);
}

.vp-pdp-faq details {
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.vp-pdp-faq details:last-child {
  border-bottom: 0;
}

.vp-pdp-faq summary {
  padding: 22px 24px;
  color: #111;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}

.vp-pdp-faq details p {
  margin: 0;
  padding: 0 24px 22px;
  color: rgba(17, 17, 17, 0.66);
  line-height: 1.7;
}

.vp-pdp-related-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.vp-pdp-related-card {
  display: grid;
  gap: 10px;
  color: #111;
  text-decoration: none;
}

.vp-pdp-related-card img {
  aspect-ratio: 1.25;
  border-radius: 20px;
  background: #f7f2ea;
}

.vp-pdp-related-card p,
.vp-pdp-related-card h3 {
  margin: 0;
}

.vp-pdp-related-card p {
  color: rgba(17, 17, 17, 0.5);
  font-size: 12px;
  font-weight: 800;
}

.vp-pdp-related-card h3 {
  font-size: 16px;
}

.vp-pdp-related-card > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.vp-pdp-mini-footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 30px;
  border-radius: 28px;
  background: #111;
  color: #fff;
}

.vp-pdp-mini-footer div {
  display: grid;
  gap: 9px;
}

.vp-pdp-mini-footer strong {
  margin-bottom: 4px;
}

.vp-pdp-mini-footer span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1180px) {
  .vp-shop-page,
  .vp-pdp-page {
    width: calc(100vw - 28px);
  }

  .vp-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .vp-pdp-hero {
    grid-template-columns: 1fr;
  }

  .vp-pdp-summary {
    padding: 0;
  }
}

@media (max-width: 1280px) {
  .vp-shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .vp-shop-layout,
  .vp-shop-newsletter {
    grid-template-columns: 1fr;
  }

  .vp-shop-hero {
    min-height: 420px;
  }

  .vp-shop-search-sticky-wrap {
    margin-top: 0;
    margin-bottom: 16px;
  }

  .vp-shop-sidebar {
    position: static;
  }

  .vp-pdp-trust,
  .vp-pdp-related-row,
  .vp-pdp-mini-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .vp-pdp-why > div,
  .vp-pdp-review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .vp-shop-page,
  .vp-pdp-page {
    width: calc(100vw - 18px);
    padding-top: 82px;
  }

  .vp-shop-hero {
    min-height: 340px;
    padding: 42px 22px 42px;
    border-radius: 26px;
  }

  .vp-shop-hero h1 {
    margin-bottom: 0;
    font-size: clamp(66px, 22vw, 118px);
    line-height: 0.84;
  }

  .vp-shop-hero p:not(.vp-section-kicker) {
    margin-top: 8px;
    font-size: 16px;
  }

  .vp-shop-toolbar,
  .vp-shop-pagination,
  .vp-shop-section-head,
  .vp-pdp-section-head,
  .vp-pdp-quantity-row {
    align-items: stretch;
    flex-direction: column;
  }

  .vp-shop-search-sticky-wrap {
    margin-top: 0;
    margin-bottom: 16px;
    top: 64px;
  }

  .vp-shop-search {
    grid-template-columns: auto 1fr;
    border-radius: 18px;
    padding: 10px 10px 10px 14px;
  }

  .vp-category-trigger {
    grid-column: 1 / -1;
    max-width: 100%;
    min-width: 0;
    font-size: 13px;
  }

  .vp-category-panel {
    width: calc(100vw - 26px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px) scale(0.98);
  }

  .vp-category-dropdown.is-open .vp-category-panel {
    transform: translateX(-50%) translateY(0) scale(1);
  }

  .vp-shop-search button {
    grid-column: 1 / -1;
  }

  .vp-shop-layout {
    padding-top: 24px;
  }

  .vp-shop-grid {
    grid-template-columns: 1fr;
  }

  .vp-shop-product-actions,
  .vp-shop-newsletter form,
  .vp-pdp-cta-row,
  .vp-pdp-trust,
  .vp-pdp-related-row,
  .vp-pdp-mini-footer {
    grid-template-columns: 1fr;
  }

  .vp-shop-newsletter,
  .vp-pdp-hero {
    padding: 22px;
    border-radius: 26px;
  }

  .vp-pdp-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── WooCommerce rich text (dangerouslySetInnerHTML) ─────────── */
/* Tailwind reset strips all HTML element styles. This restores    */
/* minimal rendering for WC description HTML: p, ul, li, table.   */
.vp-wc-content p { margin-bottom: 0.6em; }
.vp-wc-content p:last-child { margin-bottom: 0; }
.vp-wc-content ul,
.vp-wc-content ol { padding-left: 1.4em; margin: 0.4em 0 0.6em; }
.vp-wc-content li { list-style: disc; line-height: 1.7; margin-bottom: 0.2em; }
.vp-wc-content ol li { list-style: decimal; }
.vp-wc-content strong,
.vp-wc-content b { font-weight: 600; }
.vp-wc-content em,
.vp-wc-content i { font-style: italic; }
.vp-wc-content br { display: block; margin-bottom: 0.3em; }
.vp-wc-content table { width: 100%; border-collapse: collapse; font-size: 13px; margin: 0.6em 0; }
.vp-wc-content td,
.vp-wc-content th { padding: 8px 12px; border: 1px solid var(--color-border); text-align: left; vertical-align: top; }
.vp-wc-content th { background: var(--color-bg-alt); font-weight: 600; }

/* ─── Chat widget — typing indicator (animated dots) ─────────────────────── */
.vp-typing {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 10px 14px;
}
.vp-typing span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1b6f49;
  opacity: .4;
  animation: vp-dot-pulse 1.2s infinite ease-in-out;
}
.vp-typing span:nth-child(2) { animation-delay: .2s; }
.vp-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes vp-dot-pulse {
  0%, 80%, 100% { opacity: .4; transform: scale(.8); }
  40%           { opacity: 1;  transform: scale(1.1); }
}

/* Hide Tidio widget — AI is handled via JS bridge inside Vietpot chatbot */
#tidio-chat { display: none !important; }

/* ═══════════════════════════════════════════════════════════════════════════
   VIETPOT_ALBUM_GALLERY_REDESIGN_2026
   Scoped entirely to .vp-album-page — zero side-effects on other pages.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Card as anchor block ───────────────────────────────────────────────── */
a.vp-album-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ── Hero: tighter padding for album ────────────────────────────────────── */
.vp-album-page .vp-route-hero {
  padding: 76px 0 52px;
}

/* ── Filter bar ─────────────────────────────────────────────────────────── */
.vp-album-page .vp-route-filters {
  padding: 20px 0;
}

.vp-album-page .vp-route-filters > div {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  scrollbar-width: none;
}
.vp-album-page .vp-route-filters > div::-webkit-scrollbar { display: none; }

/* ── Filter buttons: pill shape ─────────────────────────────────────────── */
.vp-album-page .vp-route-filters button {
  padding: 10px 26px;
  border: 1.5px solid rgba(27, 111, 73, .2);
  border-radius: 999px;
  background: #fff;
  color: var(--vp-route-ink);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  box-shadow: 0 1px 4px rgba(26, 26, 23, .05);
  transition: background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.vp-album-page .vp-route-filters button:hover {
  background: rgba(27, 111, 73, .07);
  border-color: #1b6f49;
  color: #1b6f49;
  box-shadow: 0 2px 10px rgba(27, 111, 73, .14);
}

.vp-album-page .vp-route-filters button.active {
  background: #1b6f49;
  border-color: #1b6f49;
  color: #fff;
  box-shadow: 0 4px 16px rgba(27, 111, 73, .28);
}

/* ── Gallery: improved masonry columns ──────────────────────────────────── */
.vp-album-page .vp-album-grid {
  columns: 3;
  column-gap: 20px;
  padding-block: 56px 108px;
}

/* ── Cards: rounded, subtle shadow, lift on hover ───────────────────────── */
.vp-album-page .vp-album-card {
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(26, 26, 23, .07);
  transition: box-shadow .32s ease, transform .32s ease;
}

.vp-album-page .vp-album-card:hover {
  box-shadow: 0 10px 36px rgba(26, 26, 23, .13);
  transform: translateY(-3px);
}

/* image clips to card border-radius via overflow:hidden on .vp-album-card */
.vp-album-page .vp-album-card > img {
  border-radius: 14px;
}

/* ── Aspect-ratio variety: 6-cycle for richer masonry collage ───────────── */
.vp-album-page .vp-album-card:nth-child(6n+1) img { aspect-ratio: 4 / 5; }
.vp-album-page .vp-album-card:nth-child(6n+2) img { aspect-ratio: 16 / 10; }
.vp-album-page .vp-album-card:nth-child(6n+3) img { aspect-ratio: 1 / 1; }
.vp-album-page .vp-album-card:nth-child(6n+4) img { aspect-ratio: 3 / 4; }
.vp-album-page .vp-album-card:nth-child(6n+5) img { aspect-ratio: 4 / 3; }
.vp-album-page .vp-album-card:nth-child(6n+0) img { aspect-ratio: 2 / 3; }

/* ── Overlay: richer gradient, matches card radius ──────────────────────── */
.vp-album-page .vp-album-overlay {
  border-radius: 14px;
  background: linear-gradient(
    to top,
    rgba(8, 38, 25, .93) 0%,
    rgba(27, 111, 73, .28) 55%,
    transparent 100%
  );
  padding: 28px;
}

/* ── Overlay text elements ───────────────────────────────────────────────── */
.vp-album-page .vp-album-overlay .vp-album-meta {
  margin: 0 0 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}

.vp-album-page .vp-album-overlay .vp-album-title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.vp-album-page .vp-album-overlay .vp-album-user {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, .68);
}

/* ── CTA pill (span — not a nested <a>) ──────────────────────────────────── */
.vp-album-page .vp-album-overlay .vp-album-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #fff;
  color: #1b6f49;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 0;
  transition: background .2s ease, color .2s ease;
}

.vp-album-page .vp-album-card:hover .vp-album-cta {
  background: #1b6f49;
  color: #fff;
}

/* ── Mobile: always show overlay (no hover on touch) ────────────────────── */
@media (hover: none) {
  .vp-album-page .vp-album-overlay { opacity: 1; }
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .vp-album-page .vp-album-grid {
    columns: 2;
    column-gap: 16px;
  }
}

@media (max-width: 768px) {
  /* switch from centered-wrap to horizontally scrollable on mobile */
  .vp-album-page .vp-route-filters > div {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .vp-album-page .vp-album-grid {
    columns: 1;
    column-gap: 0;
    padding-block: 36px 72px;
  }
  /* uniform ratio on single column — no masonry needed */
  .vp-album-page .vp-album-card:nth-child(n) img {
    aspect-ratio: 4 / 3;
  }
  .vp-album-page .vp-album-card {
    margin-bottom: 14px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   VIETPOT_ALBUM_IMAGE_HERO_MATCH_SHOP_2026
   Album hero banner — pixel-match với shop banner style.
   • Hero image + light overlay: base CSS (không cần body.vp-is-album)
   • Full-bleed shell + nền trang: cần body.vp-is-album (thêm trong page-album.php)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── 1. Shell: transparent + full-width, header nằm đè lên banner ───────── */
body.vp-is-album .vp-content-shell {
  width: 100% !important;
  margin-top: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

/* ── 2. Album page: full-width, nền kem che hết teal body ──────────────── */
body.vp-is-album .vp-album-page {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #f7f2ea !important;
}

/* ── 3. Hero BASE: ảnh botanical + light overlay — giống Cửa hàng ────────
   Base rule không cần body.vp-is-album → banner luôn hiện kể cả khi body
   class bị miss do page template không được gán trong WP admin.
   ──────────────────────────────────────────────────────────────────────── */
.vp-album-hero {
  position: relative;
  min-height: clamp(340px, 39vw, 560px);
  display: flex;
  align-items: flex-end;
  padding: 54px 52px;
  border-radius: 34px;
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(180deg, rgba(17, 17, 17, 0.04) 0%, rgba(17, 17, 17, 0.22) 100%),
    url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1800&q=85');
  background-size: cover;
  background-position: center 35%;
  border: 1px solid rgba(27, 111, 73, 0.1);
  box-shadow: 0 30px 90px rgba(17, 17, 17, 0.1);
}

/* Light desaturate overlay — giống shop's ::before */
.vp-album-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.52) 100%);
  backdrop-filter: saturate(0.85);
  -webkit-backdrop-filter: saturate(0.85);
}

/* ── 4. Full-bleed override khi body.vp-is-album có mặt ─────────────────── */
body.vp-is-album .vp-album-hero {
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  min-height: clamp(420px, 34vw, 540px);
}

/* ── 5. Hero copy: trái-dưới giống Cửa hàng ─────────────────────────────── */
.vp-album-hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: none;
}

/* ── 6. Kicker (eyebrow) ─────────────────────────────────────────────────── */
.vp-album-kicker {
  margin: 0 0 14px;
  color: rgba(27, 27, 20, 0.75);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ── 7. H1 — giảm size để "Không Gian Xanh" nằm 1 hàng ─────────────────── */
.vp-album-hero h1 {
  margin: 0 0 16px !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: clamp(38px, 5vw, 80px) !important;
  font-weight: 500 !important;
  line-height: 0.9 !important;
  letter-spacing: 0 !important;
  color: #1a1a17 !important;
  text-shadow: 0 6px 24px rgba(255, 255, 255, 0.38) !important;
}

.vp-album-hero h1 em {
  display: block;
  white-space: nowrap;   /* "Không Gian Xanh" luôn 1 hàng */
  color: #1b6f49 !important;
  font-style: italic !important;
  font-weight: 400 !important;
}

/* ── 8. Description — 1 hàng ─────────────────────────────────────────────── */
.vp-album-desc {
  max-width: none;
  white-space: nowrap;   /* 1 hàng trên desktop */
  margin: 0 !important;
  color: rgba(27, 27, 20, 0.82) !important;
  font-size: clamp(13px, 1.1vw, 16px) !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}

/* ── 9. Filter bar: nền kem khớp trang, dưới hero ───────────────────────── */
body.vp-is-album .vp-route-filters {
  background: rgba(247, 242, 234, .96) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(27, 111, 73, .1) !important;
}

/* ── 10. CTA: nền kem liền mạch ─────────────────────────────────────────── */
body.vp-is-album .vp-route-cta {
  background: #ede8dd !important;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .vp-album-hero {
    min-height: clamp(320px, 42vw, 460px);
    padding: 48px 36px;
  }
  body.vp-is-album .vp-album-hero {
    min-height: clamp(340px, 42vw, 460px);
  }
}

@media (max-width: 620px) {
  .vp-album-hero {
    min-height: 280px;
    padding: 36px 20px;
  }
  .vp-album-hero h1 em {
    white-space: normal;  /* mobile: cho wrap tự nhiên */
  }
  .vp-album-desc {
    white-space: normal;  /* mobile: cho wrap tự nhiên */
    font-size: 14px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   NÚT LIÊN HỆ NHANH — VIETPOT_SOCIAL_FLOAT_2026
   Fixed stack phía trên chatbot. Không sửa chatbot.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Container: đặt ngay trên chatbot trigger ────────────────────────────── */
.vp-social-float {
  position: fixed;
  /* 28px (chatbot bottom) + 60px (trigger height) + 16px gap = 104px */
  bottom: 104px;
  right: 28px;
  z-index: 9998;           /* dưới chatbot window (9999) */
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

/* ── Mỗi nút tròn ────────────────────────────────────────────────────────── */
.vp-sf-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .22), 0 1px 4px rgba(0, 0, 0, .12);
  transition: transform .22s cubic-bezier(.34, 1.56, .64, 1),
              box-shadow .22s ease;
  flex-shrink: 0;
}

.vp-sf-btn svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.vp-sf-btn:hover {
  transform: scale(1.12) translateX(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .28), 0 2px 6px rgba(0, 0, 0, .14);
}

/* ── Brand colors ────────────────────────────────────────────────────────── */
.vp-sf-messenger { background: #0084ff; }
.vp-sf-facebook  { background: #1877f2; }
.vp-sf-zalo      { background: #0068ff; }

.vp-sf-messenger:hover { background: #006fd6; }
.vp-sf-facebook:hover  { background: #1464d8; }
.vp-sf-zalo:hover      { background: #0055d6; }

/* ── Label tooltip: xuất hiện bên trái khi hover ────────────────────────── */
.vp-sf-label {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: rgba(20, 32, 27, .88);
  color: #fff;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
  backdrop-filter: blur(4px);
}

.vp-sf-btn:hover .vp-sf-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ── Entrance animation (staggered) ──────────────────────────────────────── */
.vp-sf-btn {
  animation: vp-sf-pop .4s cubic-bezier(.34, 1.56, .64, 1) both;
}
.vp-sf-btn:nth-child(1) { animation-delay: .05s; }
.vp-sf-btn:nth-child(2) { animation-delay: .12s; }
.vp-sf-btn:nth-child(3) { animation-delay: .19s; }

@keyframes vp-sf-pop {
  from { opacity: 0; transform: scale(.6) translateY(12px); }
  to   { opacity: 1; transform: scale(1)  translateY(0); }
}

/* ── Mobile (≤640px): chatbot is bottom:16px, right:16px ─────────────────── */
@media (max-width: 640px) {
  .vp-social-float {
    /* 16px + 60px + 16px gap = 92px */
    bottom: 92px;
    right: 16px;
  }
  .vp-sf-btn {
    width: 52px;
    height: 52px;
  }
  .vp-sf-btn svg {
    width: 22px;
    height: 22px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   VIETPOT_BLOG_DEMO_CONTENT_2026
   Trang Blog với demo data — chỉ scoped trong .vp-blog-page + body.vp-is-blog
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Full-bleed shell (header đè trên hero) ──────────────────────────────── */
body.vp-is-blog {
  background: #f7f2ea !important;
}

body.vp-is-blog .vp-content-shell {
  width: 100% !important;
  margin-top: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.vp-blog-page {
  width: 100%;
  background: #f7f2ea;
}

/* ── Hero — botanical image, matches Album hero style ─────────────────────
   VIETPOT_BLOG_HERO_MATCH_ALBUM_2026
──────────────────────────────────────────────────────────────────────────── */
.vp-blog-hero {
  position: relative;
  min-height: clamp(340px, 39vw, 520px);
  display: flex;
  align-items: flex-end;
  padding: 54px 52px;
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(180deg, rgba(17,17,17,0.04) 0%, rgba(17,17,17,0.18) 100%),
    url('https://images.unsplash.com/photo-1463936575829-25148e1db1b8?w=1800&q=85');
  background-size: cover;
  background-position: center 40%;
}

/* Light frosted overlay — same pattern as .vp-album-hero::before */
.vp-blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.54) 100%);
  backdrop-filter: saturate(0.85);
  -webkit-backdrop-filter: saturate(0.85);
  pointer-events: none;
}

.vp-blog-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.vp-blog-eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #1b6f49;
}

.vp-blog-hero h1 {
  margin: 0 0 18px !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: clamp(38px, 5.5vw, 88px) !important;
  font-weight: 500 !important;
  line-height: 0.92 !important;
  color: #1a1a17 !important;
  letter-spacing: -.01em !important;
}

.vp-blog-hero h1 em {
  display: block;
  color: #1b6f49 !important;
  font-style: italic !important;
  font-weight: 400 !important;
}

.vp-blog-hero-desc {
  margin: 0 !important;
  color: rgba(27, 27, 20, 0.78) !important;
  font-size: clamp(14px, 1.3vw, 17px) !important;
  line-height: 1.65 !important;
}

/* ── Controls: search + category filter ──────────────────────────────────── */
.vp-blog-controls-wrap {
  background: #fff;
  border-bottom: 1px solid rgba(27, 111, 73, .1);
  position: sticky;
  top: 86px;
  z-index: 20;
}

.vp-blog-controls {
  max-width: min(1280px, calc(100vw - 80px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Search bar */
.vp-blog-search-field {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
  max-width: 480px;
}

.vp-blog-search-icon {
  position: absolute;
  left: 14px;
  color: #929994;
  pointer-events: none;
  flex-shrink: 0;
}

.vp-blog-search-input {
  width: 100%;
  padding: 11px 38px 11px 38px;
  border: 1px solid rgba(27, 111, 73, .2);
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  color: #2a2a22;
  background: #faf8f5;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
}

.vp-blog-search-input:focus {
  border-color: #1b6f49;
  box-shadow: 0 0 0 3px rgba(27, 111, 73, .12);
}

.vp-blog-search-input::placeholder { color: #b0aba3; }

.vp-blog-search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 18px;
  color: #929994;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}

/* Category pills */
.vp-blog-cat-nav {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.vp-blog-cat-nav::-webkit-scrollbar { display: none; }

.vp-blog-cat-btn {
  flex: 0 0 auto;
  padding: 8px 20px;
  border: 1px solid rgba(27, 111, 73, .22);
  border-radius: 999px;
  background: transparent;
  color: #3a3a30;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background .16s, color .16s, border-color .16s;
}

.vp-blog-cat-btn:hover {
  border-color: #1b6f49;
  color: #1b6f49;
  background: rgba(27, 111, 73, .06);
}

.vp-blog-cat-btn.active {
  background: #1b6f49;
  color: #fff;
  border-color: #1b6f49;
}

/* ── Body layout ─────────────────────────────────────────────────────────── */
.vp-blog-body {
  background: #f7f2ea;
}

.vp-blog-body-inner {
  max-width: min(1280px, calc(100vw - 80px));
  margin: 0 auto;
  padding: 56px 0 100px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) 320px;
  gap: 56px;
  align-items: start;
}

/* ── Articles section ────────────────────────────────────────────────────── */
.vp-blog-articles { display: flex; flex-direction: column; gap: 0; }

/* Empty state — hidden by default; JS sets style.display='flex' when needed */
.vp-blog-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px 20px;
  text-align: center;
}

.vp-blog-empty span { font-size: 36px; }
.vp-blog-empty p { margin: 0; color: #6b6659; font-size: 15px; }

.vp-blog-reset-btn {
  margin-top: 4px;
  padding: 10px 24px;
  border: 1px solid #1b6f49;
  border-radius: 999px;
  background: transparent;
  color: #1b6f49;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .16s, color .16s;
}

.vp-blog-reset-btn:hover { background: #1b6f49; color: #fff; }

/* ── Featured article ────────────────────────────────────────────────────── */
.vp-blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 32px rgba(13, 46, 31, .1);
  margin-bottom: 40px;
}

.vp-blog-featured-img {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.vp-blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.vp-blog-featured:hover .vp-blog-featured-img img { transform: scale(1.04); }

.vp-blog-featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #1b6f49;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

.vp-blog-featured-body {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.vp-blog-featured-title {
  margin: 0 !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: clamp(22px, 2.4vw, 32px) !important;
  font-weight: 500 !important;
  line-height: 1.28 !important;
  color: #1a1a17 !important;
}

.vp-blog-featured-title a {
  color: inherit;
  text-decoration: none;
}

.vp-blog-featured-title a:hover { color: #1b6f49; }

.vp-blog-featured-excerpt {
  margin: 0 !important;
  color: #6b6659;
  font-size: 15px;
  line-height: 1.7;
}

/* Category tag badge */
.vp-blog-cat-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(27, 111, 73, .1);
  color: #1b6f49;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Meta info */
.vp-blog-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #929994;
  font-size: 12px;
}

.vp-blog-meta-dot { opacity: .5; }

/* Read button */
.vp-blog-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  border-radius: 999px;
  background: #1b6f49;
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  align-self: flex-start;
  transition: background .18s, transform .18s;
}

.vp-blog-read-btn:hover { background: #14543a; transform: translateY(-1px); }

/* ── Card list ───────────────────────────────────────────────────────────── */
.vp-blog-list { display: flex; flex-direction: column; gap: 0; }

.vp-blog-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(27, 111, 73, .1);
  align-items: start;
}

.vp-blog-card:first-child { border-top: 1px solid rgba(27, 111, 73, .1); }

.vp-blog-card-thumb {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}

.vp-blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.vp-blog-card:hover .vp-blog-card-thumb img { transform: scale(1.05); }

.vp-blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}

.vp-blog-card-title {
  margin: 0 !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: clamp(17px, 1.6vw, 22px) !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  color: #1a1a17 !important;
}

.vp-blog-card-title a { color: inherit; text-decoration: none; }
.vp-blog-card-title a:hover { color: #1b6f49; }

.vp-blog-card-excerpt {
  margin: 0 !important;
  color: #6b6659;
  font-size: 14px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vp-blog-card-link {
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: #1b6f49;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  align-self: flex-start;
}

.vp-blog-card-link:hover { text-decoration: underline; }

/* ── Sidebar ─────────────────────────────────────────────────────────────── */
.vp-blog-sidebar {
  position: sticky;
  top: calc(86px + 88px + 16px);   /* header + controls + gap */
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* AI card */
.vp-blog-ai-card {
  padding: 28px 28px 26px;
  background: #0d2e1f;
  border-radius: 16px;
  color: #fff;
}

.vp-blog-ai-star {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
  color: #c8a96e;
}

.vp-blog-ai-card h3 {
  margin: 0 0 10px !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  color: #f1e6d6 !important;
}

.vp-blog-ai-card p {
  margin: 0 0 20px !important;
  color: rgba(255, 255, 255, .68) !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

.vp-blog-ai-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #f1e6d6;
  color: #0d2e1f !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  border-radius: 999px;
  transition: background .18s;
}

.vp-blog-ai-btn:hover { background: #e8d8c2; }

/* Sidebar section */
.vp-blog-sb-section { display: flex; flex-direction: column; gap: 16px; }

.vp-blog-sb-heading {
  margin: 0 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: #929994 !important;
}

/* Recent posts */
.vp-blog-recents { display: flex; flex-direction: column; gap: 0; }

.vp-blog-recent-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(27, 111, 73, .1);
  text-decoration: none !important;
  color: inherit;
}

.vp-blog-recent-item:last-child { border-bottom: none; }

.vp-blog-recent-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.vp-blog-recent-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: #2a2a22;
  transition: color .15s;
}

.vp-blog-recent-item:hover .vp-blog-recent-title { color: #1b6f49; }

.vp-blog-recent-item small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: #929994;
}

/* Topics pills */
.vp-blog-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vp-blog-topic-pill {
  padding: 6px 14px;
  border: 1px solid rgba(27, 111, 73, .22);
  border-radius: 999px;
  background: transparent;
  color: #3a3a30;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}

.vp-blog-topic-pill:hover,
.vp-blog-topic-pill.active {
  background: #1b6f49;
  color: #fff;
  border-color: #1b6f49;
}

/* Related products */
.vp-blog-products { display: flex; flex-direction: column; gap: 0; }

.vp-blog-product-row {
  display: grid;
  grid-template-columns: 36px 1fr 16px;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(27, 111, 73, .08);
  text-decoration: none !important;
  color: inherit;
  transition: background .15s;
}

.vp-blog-product-row:last-of-type { border-bottom: none; }

.vp-blog-product-icon {
  font-size: 18px;
  line-height: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 111, 73, .08);
  border-radius: 8px;
}

.vp-blog-product-info { display: flex; flex-direction: column; gap: 2px; }

.vp-blog-product-name {
  font-size: 13px;
  font-weight: 600;
  color: #2a2a22;
  line-height: 1.3;
  transition: color .15s;
}

.vp-blog-product-row:hover .vp-blog-product-name { color: #1b6f49; }

.vp-blog-product-tag {
  font-size: 10px;
  font-weight: 700;
  color: #1b6f49;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.vp-blog-shop-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #1b6f49 !important;
  text-decoration: none !important;
}

.vp-blog-shop-link:hover { text-decoration: underline !important; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .vp-blog-body-inner {
    grid-template-columns: 1fr;
    max-width: calc(100vw - 48px);
  }
  .vp-blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .vp-blog-ai-card { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .vp-blog-hero { padding: 48px 28px; }
  .vp-blog-controls { max-width: calc(100vw - 40px); padding: 14px 0; }
  .vp-blog-body-inner { padding: 36px 0 72px; }
  .vp-blog-featured { grid-template-columns: 1fr; }
  .vp-blog-featured-img { aspect-ratio: 16 / 9; }
  .vp-blog-featured-body { padding: 24px 24px 20px; }
}

@media (max-width: 600px) {
  .vp-blog-hero { min-height: 300px; padding: 40px 20px; }
  .vp-blog-card { grid-template-columns: 1fr; gap: 14px; }
  .vp-blog-card-thumb { aspect-ratio: 16 / 9; }
  .vp-blog-sidebar { grid-template-columns: 1fr; }
  .vp-blog-controls { max-width: calc(100vw - 32px); }
  .vp-blog-search-field { max-width: 100%; }
  .vp-blog-search-clear { right: 12px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   VIETPOT_BLOG_FILTER_AND_READ_MORE_FIX_2026
   Article detail modal + filter/search fixes
═══════════════════════════════════════════════════════════════════════════ */

/* ── Modal overlay ───────────────────────────────────────────────────────── */
.vp-blog-modal {
  display: none;   /* JS sets style.display='flex' to open */
  position: fixed;
  inset: 0;
  z-index: 9100;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.vp-blog-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 46, 31, .72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.vp-blog-modal-panel {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
  transform: translateY(24px);
  opacity: 0;
  transition: opacity .24s ease, transform .24s ease;
}

.vp-blog-modal.is-open .vp-blog-modal-panel {
  transform: translateY(0);
  opacity: 1;
}

/* ── Modal close button ──────────────────────────────────────────────────── */
.vp-blog-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: background .15s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .14);
}

.vp-blog-modal-close:hover { background: #fff; }

/* ── Modal image ─────────────────────────────────────────────────────────── */
.vp-blog-modal-img-wrap {
  position: relative;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.vp-blog-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vp-blog-modal-img-wrap .vp-blog-cat-tag {
  position: absolute;
  bottom: 16px;
  left: 20px;
}

/* ── Modal body ──────────────────────────────────────────────────────────── */
.vp-blog-modal-body {
  padding: 24px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vp-blog-modal-title {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 700;
  line-height: 1.32;
  color: #1a1a17;
  margin: 0;
}

/* ── Modal article content ───────────────────────────────────────────────── */
.vp-blog-modal-content {
  color: #3a3a30;
  font-size: 15px;
  line-height: 1.78;
  margin-top: 4px;
}

.vp-blog-modal-content p {
  margin: 0 0 14px;
}

.vp-blog-modal-content p:last-child { margin-bottom: 0; }

.vp-blog-modal-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a17;
  margin: 20px 0 8px;
}

.vp-blog-modal-content strong { color: #1a1a17; }

/* ── Modal CTA buttons ───────────────────────────────────────────────────── */
.vp-blog-modal-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px solid rgba(27, 111, 73, .12);
}

.vp-blog-modal-shop-btn,
.vp-blog-modal-ai-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s, color .18s, transform .15s;
  cursor: pointer;
}

.vp-blog-modal-shop-btn {
  background: #1b6f49;
  color: #fff;
}

.vp-blog-modal-shop-btn:hover {
  background: #14543a;
  transform: translateY(-1px);
  color: #fff;
}

.vp-blog-modal-ai-btn {
  background: transparent;
  color: #1b6f49;
  border: 1.5px solid #1b6f49;
}

.vp-blog-modal-ai-btn:hover {
  background: #1b6f49;
  color: #fff;
  transform: translateY(-1px);
}

/* ── Modal responsive ────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .vp-blog-modal { padding: 0; align-items: flex-end; }
  .vp-blog-modal-panel {
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
    max-width: 100%;
  }
  .vp-blog-modal-img-wrap { border-radius: 20px 20px 0 0; }
  .vp-blog-modal-body { padding: 20px 20px 36px; }
  .vp-blog-modal-cta { flex-direction: column; }
  .vp-blog-modal-shop-btn,
  .vp-blog-modal-ai-btn { text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   VIETPOT_BLOG_DETAIL_PAGE_2026
   Trang chi tiết bài viết — /blog/?post=slug
   (Modal cũ đã bị loại bỏ — "Đọc tiếp" điều hướng đến URL này)
═══════════════════════════════════════════════════════════════════════════ */

/* ── Detail header strip ─────────────────────────────────────────────────── */
.vp-blog-detail .vp-blog-dh {
  background: linear-gradient(155deg, #1b6f49 0%, #0d2e1f 70%);
  padding: clamp(100px, 13vw, 148px) 52px 40px;
  color: #fff;
}

.vp-blog-dh-inner {
  max-width: min(1180px, calc(100vw - 80px));
  margin: 0 auto;
}

.vp-blog-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
}

.vp-blog-breadcrumb a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
}

.vp-blog-breadcrumb a:hover { color: #fff; text-decoration: underline; }

.vp-blog-breadcrumb span:last-child {
  color: rgba(255, 255, 255, .95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
}

/* ── Detail body ─────────────────────────────────────────────────────────── */
.vp-blog-db {
  background: #f7f2ea;
  padding: 0 0 80px;
}

.vp-blog-db-inner {
  max-width: min(1180px, calc(100vw - 80px));
  margin: 0 auto;
  padding-top: 52px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 52px;
  align-items: start;
}

/* ── Article ─────────────────────────────────────────────────────────────── */
.vp-blog-da {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vp-blog-da .vp-blog-cat-tag { margin-bottom: 16px; }

.vp-blog-da-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a17;
  margin: 0 0 20px;
}

.vp-blog-da-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: #6b6659;
  margin-bottom: 28px;
}

.vp-blog-da-author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vp-blog-da-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1b6f49;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vp-da-views {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.vp-blog-da-figure {
  margin: 0 0 36px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.vp-blog-da-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Article prose ───────────────────────────────────────────────────────── */
.vp-blog-da-content {
  font-size: 16px;
  line-height: 1.82;
  color: #3a3a30;
  margin-bottom: 40px;
}

.vp-blog-da-content p { margin: 0 0 18px; }
.vp-blog-da-content p:last-child { margin-bottom: 0; }

.vp-blog-da-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a17;
  margin: 28px 0 10px;
  padding-left: 12px;
  border-left: 3px solid #1b6f49;
}

.vp-blog-da-content strong { color: #1a1a17; }

.vp-blog-da-content br + strong { display: block; margin-top: 6px; }

/* ── Article CTA ─────────────────────────────────────────────────────────── */
.vp-blog-da-cta {
  background: linear-gradient(135deg, #f0f7f4 0%, #e6f2ed 100%);
  border: 1px solid rgba(27, 111, 73, .2);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 28px;
}

.vp-blog-da-cta-label {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a17;
}

.vp-blog-da-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vp-blog-da-ai-btn,
.vp-blog-da-shop-btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s, color .18s, transform .14s;
  cursor: pointer;
}

.vp-blog-da-ai-btn {
  background: #1b6f49;
  color: #fff;
}
.vp-blog-da-ai-btn:hover { background: #14543a; color: #fff; transform: translateY(-1px); }

.vp-blog-da-shop-btn {
  background: transparent;
  color: #1b6f49;
  border: 1.5px solid #1b6f49;
}
.vp-blog-da-shop-btn:hover { background: #1b6f49; color: #fff; transform: translateY(-1px); }

.vp-blog-da-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #1b6f49;
  text-decoration: none;
}
.vp-blog-da-back:hover { text-decoration: underline; }

/* ── Detail sidebar ──────────────────────────────────────────────────────── */
.vp-blog-ds {
  position: sticky;
  top: calc(86px + 16px);
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.vp-blog-ds-author-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid rgba(27, 111, 73, .1);
}

.vp-blog-ds-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1b6f49 0%, #0d5234 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vp-blog-ds-author-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a17;
  margin-bottom: 4px;
}

.vp-blog-ds-author-bio {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: #6b6659;
}

.vp-blog-ds-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vp-blog-ds-info {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(27, 111, 73, .1);
  overflow: hidden;
}

.vp-blog-ds-info li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  font-size: 13px;
  border-bottom: 1px solid rgba(27, 111, 73, .06);
  gap: 8px;
}

.vp-blog-ds-info li:last-child { border-bottom: none; }

.vp-blog-ds-info-label { color: #6b6659; }

.vp-blog-ds-info strong { font-weight: 700; color: #1b6f49; }

/* ── Related posts section ───────────────────────────────────────────────── */
.vp-blog-related {
  background: #fff;
  border-top: 1px solid rgba(27, 111, 73, .1);
  padding: 56px 0 72px;
}

.vp-blog-related-inner {
  max-width: min(1180px, calc(100vw - 80px));
  margin: 0 auto;
}

.vp-blog-related-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: #1a1a17;
  margin: 0 0 36px;
}

.vp-blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vp-blog-related-card {
  background: #f7f2ea;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(27, 111, 73, .08);
  transition: transform .18s, box-shadow .18s;
  display: flex;
  flex-direction: column;
}

.vp-blog-related-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(13,46,31,.12); }

.vp-blog-related-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.vp-blog-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

.vp-blog-related-card:hover .vp-blog-related-thumb img { transform: scale(1.05); }

.vp-blog-related-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.vp-blog-related-body h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.38;
  color: #1a1a17;
  margin: 0;
}

.vp-blog-related-body h3 a { color: inherit; text-decoration: none; }
.vp-blog-related-body h3 a:hover { color: #1b6f49; }

.vp-blog-related-excerpt {
  font-size: 13px;
  color: #6b6659;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Not found ───────────────────────────────────────────────────────────── */
.vp-blog-notfound {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #f7f2ea;
  color: #6b6659;
  font-size: 16px;
  padding: 60px 20px;
}

/* ── Detail responsive ───────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .vp-blog-db-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .vp-blog-ds { position: static; }
  .vp-blog-related-grid { grid-template-columns: repeat(2, 1fr); }
  .vp-blog-detail .vp-blog-dh { padding: 110px 28px 36px; }
  .vp-blog-db-inner { padding-top: 36px; max-width: calc(100vw - 56px); }
}

@media (max-width: 600px) {
  .vp-blog-related-grid { grid-template-columns: 1fr; }
  .vp-blog-da-cta { padding: 20px; }
  .vp-blog-da-cta-btns { flex-direction: column; }
  .vp-blog-detail .vp-blog-dh { padding: 110px 20px 32px; }
  .vp-blog-db-inner { max-width: calc(100vw - 40px); padding-top: 28px; }
  .vp-blog-breadcrumb span:last-child { max-width: 200px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   VIETPOT_HOME_TRUST_STRIP_2026
   Premium floating trust card — sits between hero and category cards.
   z-index 6 > .vp-category-overlay (5) > hero.
   Overrides .vp-category-overlay margin-top from -80px → 36px.
═══════════════════════════════════════════════════════════════════════ */

/* ── Strip wrapper — negative margin overlaps hero bottom ── */
.vp-home-trust-strip {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: center;
  margin-top: -54px;
  padding: 0 18px;
  pointer-events: none;
}

/* ── Glass card ── */
.vp-home-trust-inner {
  pointer-events: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(82%, 1320px);
  background: rgba(253, 250, 245, 0.90);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border: 1px solid rgba(200, 188, 165, 0.32);
  border-radius: 22px;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.04),
    0 10px 38px rgba(0, 0, 0, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.80);
}

/* ── Each trust item ── */
.vp-home-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 26px 28px;
  border-right: 1px solid rgba(196, 182, 158, 0.28);
}

.vp-home-trust-item:last-child {
  border-right: none;
}

/* ── Icon capsule ── */
.vp-home-trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: rgba(27, 111, 73, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b6f49;
  transition: background 0.22s;
}

.vp-home-trust-item:hover .vp-home-trust-icon {
  background: rgba(27, 111, 73, 0.16);
}

/* ── Text ── */
.vp-home-trust-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}

.vp-home-trust-text strong {
  display: block;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a17;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.vp-home-trust-text span {
  display: block;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 12px;
  color: rgba(48, 46, 36, 0.58);
  line-height: 1.55;
}

/* ── Override: category cards no longer overlap hero ── */
.vp-category-overlay {
  margin-top: 36px;
}

/* ── Responsive: tablet 2 × 2 ── */
@media (max-width: 1120px) {
  .vp-home-trust-strip {
    margin-top: -44px;
  }
  .vp-home-trust-inner {
    grid-template-columns: repeat(2, 1fr);
    width: min(90%, 680px);
  }
  .vp-home-trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(196, 182, 158, 0.28);
    padding: 22px 24px;
  }
  .vp-home-trust-item:nth-child(odd) {
    border-right: 1px solid rgba(196, 182, 158, 0.28);
  }
  .vp-home-trust-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .vp-category-overlay {
    margin-top: 32px;
  }
}

/* ── Responsive: override old -40px mobile margin ── */
@media (max-width: 760px) {
  .vp-category-overlay {
    margin-top: 20px;
  }
}

/* ── Responsive: mobile 1 column ── */
@media (max-width: 600px) {
  .vp-home-trust-strip {
    margin-top: -28px;
    padding: 0 10px;
  }
  .vp-home-trust-inner {
    grid-template-columns: 1fr;
    width: 100%;
    border-radius: 18px;
  }
  .vp-home-trust-item {
    padding: 16px 20px;
    border-right: none !important;
    border-bottom: 1px solid rgba(196, 182, 158, 0.28);
  }
  .vp-home-trust-item:last-child {
    border-bottom: none;
  }
  .vp-category-overlay {
    margin-top: 16px;
  }
}

/* VIETPOT_SHOP_HERO_BACKGROUND_UPDATE_2026 */

/* ── New shop hero background: bright plant-pot image ── */
body.vp-is-shop .vp-shop-hero {
  /* PNG fallback — tất cả browsers */
  background-image: url('../images/shop/shop-hero-vietpot-bg.png') !important;
  /* VIETPOT_IMAGE_PIPELINE_2026: WebP via image-set() — Chrome 100+, Safari 17+, FF 118+ */
  /* shop-hero-1200.webp: 54 KB vs PNG gốc 634 KB (−91%) */
  background-image: image-set(
    url('../images/optimized/shop-hero-1200.webp') type('image/webp'),
    url('../images/shop/shop-hero-vietpot-bg.png') type('image/png')
  ) !important;
  background-size: cover !important;
  background-position: right center !important;
  background-color: #f5f7f2 !important;
}

/* Text: switch from white to dark — image background is bright */
body.vp-is-shop .vp-shop-hero h1 {
  color: #1a1a17 !important;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.18) !important;
}

body.vp-is-shop .vp-shop-hero p:not(.vp-section-kicker) {
  color: rgba(28, 26, 18, 0.75) !important;
  text-shadow: none !important;
}

body.vp-is-shop .vp-shop-hero .vp-section-kicker {
  color: rgba(28, 26, 18, 0.50) !important;
  text-shadow: none !important;
}

/* Tablet: shift position so pots remain visible */
@media (max-width: 980px) {
  body.vp-is-shop .vp-shop-hero {
    background-position: 75% center !important;
  }
}

/* Mobile: center on the pots cluster */
@media (max-width: 640px) {
  body.vp-is-shop .vp-shop-hero {
    background-position: 70% center !important;
  }
}

/* VIETPOT_SHOP_HERO_SOFT_DARK_OVERLAY_2026 */

/* ::before z-index lifted to 1 so it renders above the background image */
body.vp-is-shop .vp-shop-hero::before {
  background: rgba(0, 0, 0, 0.22) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  z-index: 1 !important;
}

/* Copy must sit above the overlay */
body.vp-is-shop .vp-shop-hero-copy {
  position: relative !important;
  z-index: 2 !important;
}

/* VIETPOT_SHOP_FILTER_CATEGORY_TREE_2026 */

/* ── Container ── */
.vp-filter-section--cats {
  border-top: none;
  padding-top: 0;
}

.vp-filter-cat-tree {
  display: grid;
  gap: 3px;
}

/* ── Active parent open state ── */
.vp-filter-branch.is-open > .vp-filter-cat-parent.active {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  background: #1b6f49;
}

/* ── Children container: left tree line + open/close transition ── */
.vp-filter-cat-tree .vp-filter-children {
  margin-left: 14px;
  padding-left: 12px;
  border-left: 2px solid rgba(27, 111, 73, 0.18);
  gap: 2px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.vp-filter-cat-tree .vp-filter-branch.is-open > .vp-filter-children {
  max-height: 600px;
}

/* VIETPOT_ALBUM_DYNAMIC_CATEGORY_LAYOUT_2026 */

/* ── Shared card base for all category layouts ── */
.vp-album-page .vp-album-card {
  overflow: hidden;
}

.vp-album-page .vp-album-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s ease;
}

.vp-album-page .vp-album-card:hover img {
  transform: scale(1.05);
}

/* ── Empty state ── */
.vp-album-empty {
  padding: 60px 24px;
  text-align: center;
  color: rgba(17, 17, 17, 0.45);
  font-size: 15px;
}

/* ════════════════════════════════════════════════
   Layout: Tất cả — masonry columns (default)
   Keeps existing columns:3 from .vp-album-page .vp-album-grid
   ════════════════════════════════════════════════ */
.vp-album-page .vp-album-layout--all .vp-album-card {
  break-inside: avoid;
  margin-bottom: 20px;
}

/* ════════════════════════════════════════════════
   Layout: Ban Công — featured dọc trái rộng hơn
   ════════════════════════════════════════════════ */
.vp-album-page .vp-album-layout--ban-cong {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 16px;
  columns: unset;
}

.vp-album-page .vp-album-layout--ban-cong .vp-album-card img {
  aspect-ratio: 4 / 3;
}

.vp-album-page .vp-album-layout--ban-cong .vp-album-card.is-featured img {
  aspect-ratio: 4 / 3;
}

/* ════════════════════════════════════════════════
   Layout: Sân Thượng — hero dọc trái + grid phải
   ════════════════════════════════════════════════ */
.vp-album-page .vp-album-layout--san-thuong {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-auto-rows: auto;
  gap: 16px;
  columns: unset;
}

.vp-album-page .vp-album-layout--san-thuong .vp-album-card img {
  aspect-ratio: 4 / 3;
}

.vp-album-page .vp-album-layout--san-thuong .vp-album-card.is-featured {
  grid-row: span 2;
}

.vp-album-page .vp-album-layout--san-thuong .vp-album-card.is-featured img {
  aspect-ratio: 3 / 4;
  height: 100%;
}

/* ════════════════════════════════════════════════
   Layout: Phòng Khách — featured to trái + secondary phải
   ════════════════════════════════════════════════ */
.vp-album-page .vp-album-layout--phong-khach {
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 16px;
  columns: unset;
}

.vp-album-page .vp-album-layout--phong-khach .vp-album-card img {
  aspect-ratio: 4 / 3;
}

.vp-album-page .vp-album-layout--phong-khach .vp-album-card.is-featured img {
  aspect-ratio: 4 / 3;
}

/* ════════════════════════════════════════════════
   Layout: Văn Phòng — uniform grid, sạch, gọn
   ════════════════════════════════════════════════ */
.vp-album-page .vp-album-layout--van-phong {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  columns: unset;
}

.vp-album-page .vp-album-layout--van-phong .vp-album-card img {
  aspect-ratio: 1 / 1;
}

/* ════════════════════════════════════════════════
   Layout: Quán Cafe — editorial, dọc + ngang xen kẽ
   ════════════════════════════════════════════════ */
.vp-album-page .vp-album-layout--quan-cafe {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  columns: unset;
}

.vp-album-page .vp-album-layout--quan-cafe .vp-album-card img {
  aspect-ratio: 3 / 4;
}

.vp-album-page .vp-album-layout--quan-cafe .vp-album-card.is-featured {
  grid-column: span 2;
}

.vp-album-page .vp-album-layout--quan-cafe .vp-album-card.is-featured img {
  aspect-ratio: 16 / 9;
}

/* ════════════════════════════════════════════════
   Layout: Sân Vườn — masonry 2 cột, ảnh rộng tự nhiên
   ════════════════════════════════════════════════ */
.vp-album-page .vp-album-layout--san-vuon {
  columns: 2;
  column-gap: 20px;
  display: block;
}

.vp-album-page .vp-album-layout--san-vuon .vp-album-card {
  break-inside: avoid;
  margin-bottom: 20px;
}

.vp-album-page .vp-album-layout--san-vuon .vp-album-card img {
  aspect-ratio: 4 / 3;
}

.vp-album-page .vp-album-layout--san-vuon .vp-album-card.is-featured img {
  aspect-ratio: 3 / 2;
}

/* ── Responsive: tablet (≤ 900px) ── */
@media (max-width: 900px) {
  /* ban-cong & phong-khach đã là 2 cột — chuyển sang equal width */
  .vp-album-page .vp-album-layout--ban-cong,
  .vp-album-page .vp-album-layout--phong-khach {
    grid-template-columns: repeat(2, 1fr);
  }

  /* van-phong & quan-cafe: 3 cột → 2 cột */
  .vp-album-page .vp-album-layout--van-phong,
  .vp-album-page .vp-album-layout--quan-cafe {
    grid-template-columns: repeat(2, 1fr);
  }

  /* san-thuong: phá asymmetric → equal 2 cột */
  .vp-album-page .vp-album-layout--san-thuong {
    grid-template-columns: repeat(2, 1fr);
  }

  .vp-album-page .vp-album-layout--san-thuong .vp-album-card.is-featured {
    grid-column: span 2;
    grid-row: auto;
  }

  .vp-album-page .vp-album-layout--san-thuong .vp-album-card.is-featured img,
  .vp-album-page .vp-album-layout--san-thuong .vp-album-card img {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .vp-album-page .vp-album-layout--quan-cafe .vp-album-card.is-featured {
    grid-column: span 2;
  }
}

/* ── Responsive: mobile (≤ 560px) ── */
@media (max-width: 560px) {
  .vp-album-page .vp-album-layout--ban-cong,
  .vp-album-page .vp-album-layout--san-thuong,
  .vp-album-page .vp-album-layout--phong-khach,
  .vp-album-page .vp-album-layout--van-phong,
  .vp-album-page .vp-album-layout--quan-cafe {
    grid-template-columns: 1fr;
  }

  .vp-album-page .vp-album-layout--ban-cong .vp-album-card.is-featured,
  .vp-album-page .vp-album-layout--phong-khach .vp-album-card.is-featured,
  .vp-album-page .vp-album-layout--quan-cafe .vp-album-card.is-featured {
    grid-column: span 1;
  }

  .vp-album-page .vp-album-layout--san-thuong .vp-album-card.is-featured {
    grid-column: span 1;
  }

  .vp-album-page .vp-album-layout--san-vuon {
    columns: 1;
  }

  /* Uniform ratio trên mobile cho tất cả layout */
  .vp-album-page [class*="vp-album-layout--"] .vp-album-card img,
  .vp-album-page [class*="vp-album-layout--"] .vp-album-card.is-featured img {
    aspect-ratio: 4 / 3;
    height: auto;
  }
}

/* VIETPOT_HOME_SPACE_CARDS_ALBUM_DEEPLINK_2026 */
.vp-space-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.22) 0%, transparent 55%);
  pointer-events: none;
}

.vp-space-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px 10px 16px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  transition: background 0.2s ease;
}

.vp-space-name {
  color: #17211c;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.vp-space-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1b6f49;
  color: #fff;
  transition: transform 0.22s ease;
}

.vp-space-card:hover .vp-space-label {
  background: rgba(255, 255, 255, 0.96);
}

.vp-space-card:hover .vp-space-icon {
  transform: translateX(3px);
}

/* VIETPOT_CONTACT_FULL_WIDTH_LIGHT_HERO_2026 ══════════════════════════════ */

/* 1. Shell: full-width, xoá border-radius/shadow/crop */
body.vp-is-contact .vp-content-shell {
  width: 100% !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

/* 2. Contact page wrapper: full-width, nền cream */
body.vp-is-contact .vp-contact-page {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #f7f2ea !important;
}

/* 3. Hero: gradient sage nhạt + cream — sáng, sang, không trắng bệt */
body.vp-is-contact .vp-ct-hero {
  background: linear-gradient(145deg, #eaf4ef 0%, #d9ecdf 45%, #cce4d7 100%);
  padding: 72px 0 80px;
}

/* 4. Text: chuyển sang tone tối trên nền sáng */
body.vp-is-contact .vp-ct-eyebrow {
  color: #1b6f49;
  letter-spacing: 0.18em;
}

body.vp-is-contact .vp-ct-hero-copy h1 {
  color: #17211c;
}

body.vp-is-contact .vp-ct-hero-copy > p {
  color: #3d524a;
}

/* 5. CTA: button đổi thành xanh đặc, link đổi sang xanh đậm */
body.vp-is-contact .vp-ct-hero-btn {
  background: #1b6f49;
  color: #fff;
  box-shadow: 0 8px 24px rgba(27, 111, 73, 0.22);
}

body.vp-is-contact .vp-ct-hero-btn:hover {
  background: #14543a;
  transform: translateY(-2px);
}

body.vp-is-contact .vp-ct-hero-link {
  color: #1b6f49;
  font-weight: 700;
}

body.vp-is-contact .vp-ct-hero-link:hover {
  color: #17211c;
}

/* 6. Arch: shadow + border nhẹ hơn cho nền sáng */
body.vp-is-contact .vp-ct-hero-arch {
  box-shadow: 0 24px 60px rgba(17, 48, 35, 0.16);
  border: 3px solid rgba(27, 111, 73, 0.15);
}

/* 7. Info strip + phần còn lại: nền cream liền mạch */
body.vp-is-contact .vp-ct-info-strip {
  background: #f7f2ea;
}

/* 8. Map section: giữ nền cream */
body.vp-is-contact .vp-ct-map-section {
  background: #f7f2ea;
}

/* 9. Responsive: hero 1 cột mobile */
@media (max-width: 768px) {
  body.vp-is-contact .vp-ct-hero {
    padding: 52px 0 56px;
  }
}

/* VIETPOT_CONTACT_FEEDBACK_FORM_2026 ═══════════════════════════════════════ */

/* ── Form header ── */
.vp-fb-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: #1b6f49;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vp-ct-form-col h2 {
  margin: 4px 0 8px;
  font-size: clamp(22px, 2.8vw, 30px);
}

/* ── Star rating wrapper ── */
.vp-fb-rating-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vp-fb-field-label {
  color: #6b746f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Stars — DOM order 5→1, row-reverse renders 1→5 left-to-right */
.vp-fb-stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 2px;
}

.vp-fb-stars input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  margin: 0;
}

.vp-fb-stars label {
  display: inline !important; /* override vp-ct-form label { display:grid } */
  padding: 2px 4px;
  font-size: 34px;
  line-height: 1;
  color: #d9d4ca;
  cursor: pointer;
  transition: color 0.12s ease, transform 0.1s ease;
  user-select: none;
}

/* Checked star + all lower-value siblings after it in DOM */
.vp-fb-stars input[type="radio"]:checked ~ label {
  color: #f59e0b;
}

/* Hover: hovered star + lower-value stars to its left */
.vp-fb-stars label:hover,
.vp-fb-stars label:hover ~ label {
  color: #f59e0b;
}

.vp-fb-stars label:hover {
  transform: scale(1.15);
}

.vp-fb-star-desc {
  min-height: 16px;
  color: #6b746f;
  font-size: 13px;
  font-style: italic;
}

/* ── Consent checkbox ── */
.vp-fb-consent {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px 16px;
  background: rgba(27, 111, 73, 0.05);
  border: 1px solid rgba(27, 111, 73, 0.12);
  border-radius: 12px;
  cursor: pointer;
}

.vp-fb-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  padding: 0 !important;
  margin: 0;
  border: 1.5px solid rgba(27, 111, 73, 0.4) !important;
  border-radius: 4px !important;
  background: #fff !important;
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  accent-color: #1b6f49;
  cursor: pointer;
  box-shadow: none !important;
  transition: none !important;
}

.vp-fb-consent > span {
  color: #3d524a;
  font-size: 14px;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
}

/* ── Submit button: loading state ── */
.vp-fb-spinner {
  display: none;
  animation: vp-fb-spin 0.75s linear infinite;
}

.vp-ct-submit.is-loading .vp-fb-btn-text,
.vp-ct-submit.is-loading .vp-fb-btn-arr {
  display: none;
}

.vp-ct-submit.is-loading .vp-fb-spinner {
  display: block;
}

@keyframes vp-fb-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Status messages ── */
.vp-fb-status {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.vp-fb-status--ok {
  background: rgba(27, 111, 73, 0.1);
  color: #14543a;
  border: 1px solid rgba(27, 111, 73, 0.22);
}

.vp-fb-status--error {
  background: rgba(200, 40, 40, 0.07);
  color: #b52a2a;
  border: 1px solid rgba(200, 40, 40, 0.2);
}

.vp-fb-status--warn {
  background: rgba(245, 158, 11, 0.09);
  color: #8a5d0a;
  border: 1px solid rgba(245, 158, 11, 0.24);
}

/* ── Responsive ── */
@media (max-width: 540px) {
  .vp-fb-stars label {
    font-size: 28px;
    padding: 2px 3px;
  }
}

/* ════════════════════════════════════════════════════════════════
   VIETPOT_CONVERSION_SYSTEM_2026
   Popup · Freeship bar · Combo suggestions · Membership card
   ════════════════════════════════════════════════════════════════ */

/* ── Popup overlay ── */
/* VIETPOT_POPUP_RUNTIME_FIX_2026: z-index 999999 (cao hơn header/chatbot), max-width 520px */
.vp-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(10, 28, 18, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.vp-popup-box {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 44px 36px 32px;
  max-width: 520px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  text-align: center;
  box-shadow: 0 32px 80px rgba(10, 28, 18, 0.28);
  animation: vp-popup-in 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes vp-popup-in {
  from { transform: scale(0.82) translateY(24px); opacity: 0; }
  to   { transform: scale(1)    translateY(0);    opacity: 1; }
}

.vp-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f0ea;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #6b6659;
  transition: background 0.15s, color 0.15s;
}
.vp-popup-close:hover { background: #e8dfd4; color: #1a1a17; }

.vp-popup-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1b6f49;
  background: rgba(27, 111, 73, 0.1);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.vp-popup-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  color: #17211c;
  line-height: 1.28;
  margin: 0 0 14px;
}

.vp-popup-desc {
  font-size: 14px;
  color: #6b6659;
  line-height: 1.6;
  margin: 0 0 20px;
}

.vp-popup-coupon-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.vp-coupon-code-badge {
  font-family: monospace;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #1b6f49;
  background: #f0f7f3;
  border: 1.5px dashed #1b6f49;
  border-radius: 10px;
  padding: 6px 16px;
}

.vp-coupon-discount {
  font-size: 14px;
  font-weight: 700;
  color: #b58c3a;
  background: rgba(200, 169, 110, 0.14);
  border-radius: 8px;
  padding: 6px 12px;
}

.vp-popup-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 13px;
  color: #9c9487;
  margin-bottom: 24px;
}

.vp-cd-timer {
  font-family: monospace;
  font-size: 15px;
  font-weight: 700;
  color: #1b6f49;
}

.vp-popup-cta {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: #1b6f49;
  color: #fff !important;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  margin-bottom: 12px;
  transition: background 0.15s, transform 0.12s;
}
.vp-popup-cta:hover { background: #145538; transform: translateY(-1px); }

.vp-popup-skip {
  background: none;
  border: none;
  font-size: 13px;
  color: #9c9487;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.15s;
}
.vp-popup-skip:hover { color: #4a4a3f; }

/* ── Mini reminder ── */
.vp-mini-reminder {
  display: none;
  position: fixed;
  bottom: 112px;
  right: 22px;
  z-index: 99998;
}

.vp-mini-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1b6f49;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(27, 111, 73, 0.38);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s, transform 0.15s;
  animation: vp-mini-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vp-mini-btn:hover { background: #145538; transform: translateY(-2px); }

.vp-mini-text { color: #fff; }
.vp-mini-text strong { font-family: monospace; }

@keyframes vp-mini-in {
  from { transform: translateY(16px) scale(0.85); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

/* ── Freeship progress bar ── */
.vp-freeship-bar {
  background: #f0f7f3;
  border: 1px solid #c8e4cf;
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 24px;
}

.vp-freeship-bar.is-achieved {
  background: #e6f4ec;
  border-color: #1b6f49;
}

.vp-freeship-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.vp-freeship-icon { color: #1b6f49; flex-shrink: 0; }

.vp-freeship-text { font-size: 14px; color: #3a4a3e; line-height: 1.5; }
.vp-freeship-ok   { font-weight: 600; color: #1b6f49; }

.vp-freeship-track {
  height: 7px;
  background: #c8e4cf;
  border-radius: 999px;
  overflow: hidden;
}

.vp-freeship-fill {
  height: 100%;
  background: linear-gradient(90deg, #2e9e6a, #1b6f49);
  border-radius: 999px;
  transition: width 0.7s ease;
}

/* ── Combo gợi ý sản phẩm ── */
.vp-combo-section {
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid #e8dfd4;
}

.vp-combo-header { margin-bottom: 28px; }

.vp-combo-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  color: #17211c;
  margin: 0 0 6px;
}

.vp-combo-sub { font-size: 14px; color: #6b6659; margin: 0; }

.vp-combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.vp-combo-card {
  background: #fff;
  border: 1px solid #e8dfd4;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.vp-combo-card:hover {
  box-shadow: 0 8px 28px rgba(13, 34, 27, 0.12);
  transform: translateY(-3px);
}

.vp-combo-img-wrap {
  display: block;
  position: relative;
  background: #f9f7f4;
}

.vp-combo-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.vp-combo-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1b6f49;
  background: rgba(240, 247, 243, 0.95);
  border-radius: 6px;
  padding: 3px 8px;
}

.vp-combo-info { padding: 14px 14px 16px; }

.vp-combo-name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a17;
  text-decoration: none;
  line-height: 1.45;
  margin-bottom: 6px;
}
.vp-combo-name:hover { color: #1b6f49; }

.vp-combo-price {
  font-size: 15px;
  font-weight: 700;
  color: #1b6f49;
  margin-bottom: 10px;
}

.vp-combo-add-btn {
  display: block;
  width: 100%;
  padding: 8px 10px;
  background: #f0f7f3;
  color: #1b6f49 !important;
  border: 1px solid #c8e4cf;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none !important;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.vp-combo-add-btn:hover {
  background: #1b6f49;
  color: #fff !important;
  border-color: #1b6f49;
}

.vp-combo-all-wrap { text-align: center; }

.vp-combo-add-all {
  padding: 12px 36px;
  background: #1b6f49;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, transform 0.12s;
}
.vp-combo-add-all:hover   { background: #145538; transform: translateY(-1px); }
.vp-combo-add-all:disabled { opacity: 0.65; cursor: default; transform: none; }

/* ── Membership card (dashboard) ── */
.vp-membership-card {
  background: #fff;
  border: 1px solid #e8dfd4;
  border-radius: 20px;
  padding: 24px 28px;
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(13, 34, 27, 0.05);
}

.vp-mc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.vp-mc-title {
  font-size: 15px;
  font-weight: 700;
  color: #17211c;
  margin: 0;
}

.vp-mc-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 14px;
  background: rgba(27, 111, 73, 0.1);
  color: #1b6f49;
}

.vp-mc-points-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 14px;
}

.vp-mc-pts {
  font-size: 36px;
  font-weight: 700;
  color: #17211c;
  line-height: 1;
  font-family: 'Playfair Display', Georgia, serif;
}

.vp-mc-pts-label {
  font-size: 14px;
  color: #6b6659;
  margin-bottom: 3px;
}

.vp-mc-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #9c9487;
  margin-bottom: 6px;
}

.vp-mc-track {
  height: 8px;
  background: #e8dfd4;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 14px;
}

.vp-mc-fill {
  height: 100%;
  background: linear-gradient(90deg, #2e9e6a, #1b6f49);
  border-radius: 999px;
  transition: width 0.8s ease;
}

.vp-mc-benefit {
  font-size: 13px;
  color: #4a6a5a;
  background: #f0f7f3;
  border-radius: 10px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ── Responsive popup ── */
@media (max-width: 480px) {
  .vp-popup-box   { padding: 40px 22px 28px; border-radius: 22px; }
  .vp-popup-title { font-size: 22px; }
  .vp-combo-grid  { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .vp-membership-card { padding: 20px 18px; }
}

/* ════════════════════════════════════════════════════════════════════════════
   VIETPOT_RESPONSIVE_SYSTEM_2026
   Hệ thống responsive tập trung — mobile-first corrections.
   Breakpoints chuẩn:
     Desktop  : >= 1200px  (no override needed — base styles handle this)
     Laptop   : <= 1199px  → @media (max-width: 1199px)
     Tablet   : <= 1023px  → @media (max-width: 1023px)
     Mobile L : <= 767px   → @media (max-width: 767px)
     Mobile S : <= 479px   → @media (max-width: 479px)

   QUYỀN TẮC KHI THÊM SECTION MỚI:
   - Mọi section mới phải có class riêng (vp-xxx-yyy)
   - Grid mới dùng: grid-template-columns: repeat(auto-fit, minmax(MIN, 1fr))
   - Khi thêm CSS desktop → thêm overrides tại Section tương ứng bên dưới
════════════════════════════════════════════════════════════════════════════ */

/* ── 0. Foundation Guards — ngăn horizontal scroll toàn site ── */
html {
  overflow-x: clip;
}
body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
img,
video,
iframe,
embed,
object {
  max-width: 100%;
  height: auto;
}
svg {
  max-width: 100%;
}
table {
  border-collapse: collapse;
}
input,
textarea,
select,
button {
  max-width: 100%;
}

/* ── 1. Mobile Toggle — màu đúng trên header trong suốt ── */
@media (max-width: 1120px) {
  .vp-mobile-toggle {
    color: rgba(28, 26, 18, 0.85);
    background: rgba(255, 255, 255, 0.38);
    border-color: rgba(28, 26, 18, 0.16);
    min-width: 44px;
    min-height: 44px;
  }
  .vp-nav-scrolled .vp-mobile-toggle {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
  }
  /* Ẩn text label Tài khoản trên tablet (giữ icon) */
  .vp-nav-pill span:not(.vp-cart-badge) {
    display: none;
  }
}

/* ── 2. Mobile Drawer — overlay phía sau drawer ── */
.vp-mobile-drawer::before {
  content: '';
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(10, 28, 18, 0.48);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: -1;
}
.vp-mobile-drawer.vp-open::before {
  opacity: 1;
  pointer-events: auto;
}

/* ── 3. Content Shell — mobile margins ── */
@media (max-width: 767px) {
  .vp-content-shell {
    border-radius: 16px;
  }
}
@media (max-width: 479px) {
  .vp-content-shell {
    width: calc(100vw - 14px);
    border-radius: 12px;
  }
}

/* ── 4. Section spacing scale — giảm padding cho mobile ── */
@media (max-width: 767px) {
  .vp-home,
  .vp-shop-page,
  .vp-pdp-page,
  .vp-album-page,
  .vp-blog-page,
  .vp-contact-page,
  .vp-ai-page {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* ── 5. Homepage Hero — mobile type scale ── */
@media (max-width: 767px) {
  .vp-hero-card {
    min-height: 70vh;
  }
  .vp-hero-kicker {
    font-size: 11px;
  }
}
@media (max-width: 479px) {
  .vp-hero-card {
    min-height: 80vh;
  }
}

/* ── 6. Shop Hero — giới hạn font lớn trên mobile nhỏ ── */
@media (max-width: 479px) {
  .vp-shop-hero {
    min-height: 220px;
    padding: 28px 20px;
    border-radius: 20px;
  }
  .vp-shop-hero h1,
  body.vp-is-shop .vp-shop-hero h1 {
    font-size: clamp(52px, 17vw, 80px) !important;
    line-height: 0.86;
  }
  .vp-shop-hero p:not(.vp-section-kicker) {
    font-size: 14px;
  }
}

/* ── 7. Shop Grid — 2 cột trên mobile ── */
@media (max-width: 767px) and (min-width: 480px) {
  .vp-shop-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
}
@media (max-width: 479px) {
  .vp-shop-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .vp-card-title {
    font-size: 13px;
  }
  .vp-card-price {
    font-size: 14px;
  }
}

/* ── 8. Product Detail — sticky add-to-cart bar on mobile ── */
@media (max-width: 767px) {
  .vp-pdp-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
    gap: 8px;
    margin-top: 10px;
  }
  .vp-pdp-gallery-thumbs img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
  }
}

/* ── 9. Combo section — 1 cột trên mobile nhỏ ── */
@media (max-width: 479px) {
  .vp-combo-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
}

/* ── 10. Album — gallery 1 cột mobile ── */
@media (max-width: 767px) {
  .vp-album-masonry,
  .vp-album-grid {
    columns: 2 !important;
    column-gap: 10px;
  }
}
@media (max-width: 479px) {
  .vp-album-masonry,
  .vp-album-grid {
    columns: 1 !important;
  }
  /* Filter pills scroll ngang */
  .vp-album-filters,
  .vp-blog-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .vp-album-filters::-webkit-scrollbar,
  .vp-blog-filters::-webkit-scrollbar {
    display: none;
  }
  .vp-album-filters .vp-filter-pill,
  .vp-blog-filters .vp-filter-pill {
    flex-shrink: 0;
  }
}

/* ── 11. Blog — card 1 cột mobile ── */
@media (max-width: 767px) {
  .vp-blog-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .vp-blog-featured {
    min-height: 280px;
  }
}

/* ── 12. Contact — 1 cột mobile ── */
@media (max-width: 767px) {
  .vp-contact-grid,
  .vp-contact-cards {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .vp-contact-map {
    height: 220px !important;
  }
}

/* ── 13. Floating Social — không che Add to Cart trên mobile ── */
@media (max-width: 767px) {
  /* Social pill stack */
  .vp-social-pills {
    bottom: 80px !important;
    right: 14px !important;
  }
  .vp-social-pills a {
    width: 44px !important;
    height: 44px !important;
  }
  /* Chatbot window không che checkout button */
  .vp-chatbot-window {
    bottom: 130px !important;
    right: 10px !important;
    width: calc(100vw - 20px) !important;
    max-width: 360px;
  }
}
@media (max-width: 479px) {
  .vp-social-pills {
    right: 10px !important;
  }
  /* Thu gọn floating buttons khi không cần */
  .vp-social-pills a span,
  .vp-social-label {
    display: none;
  }
}

/* ── 14. Mini Reminder popup — không che CTA bottom ── */
@media (max-width: 767px) {
  .vp-mini-reminder {
    bottom: 76px !important;
    right: 14px !important;
  }
  .vp-mini-btn {
    font-size: 12px;
    padding: 9px 14px;
  }
}

/* ── 15. Popup Voucher — bottom-sheet style trên mobile ── */
@media (max-width: 767px) {
  .vp-popup-overlay {
    align-items: flex-end !important;
    padding: 0 !important;
  }
  .vp-popup-box {
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 24px 24px 0 0 !important;
    padding: 44px 24px 36px !important;
    max-height: 88vh;
    overflow-y: auto;
    animation: vp-popup-up 0.36s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  @keyframes vp-popup-up {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
  }
  .vp-popup-coupon-row {
    flex-direction: column;
    gap: 10px;
  }
  .vp-popup-coupon-row button {
    width: 100%;
  }
}

/* ── 16. Freeship Bar — full width trên mobile ── */
@media (max-width: 767px) {
  .vp-freeship-bar {
    border-radius: 12px;
    padding: 12px 14px;
  }
  .vp-freeship-text {
    font-size: 13px;
  }
}

/* ── 17. Focus ring — kiểu xanh Vietpot, không tím ── */
:focus:not(:focus-visible) {
  outline: none !important;
}
:focus-visible {
  outline: 2px solid #1b6f49 !important;
  outline-offset: 2px !important;
  border-radius: 4px !important;
}

/* ── 18. Touch targets — tap area >= 44px cho buttons/links quan trọng ── */
.vp-mobile-toggle,
.vp-mobile-close,
.vp-nav-search-btn,
.vp-popup-close,
.vp-lp-pw-toggle {
  min-width: 44px;
  min-height: 44px;
}

/* ── 19. Input height mobile — dễ bấm ── */
@media (max-width: 767px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="search"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea {
    font-size: 16px; /* ngăn iOS zoom khi focus */
  }
}

/* ── 20. Vietpot AI page — chat input mobile ── */
@media (max-width: 767px) {
  .vp-ai-input-row {
    padding: 10px 12px;
    gap: 8px;
  }
  .vp-ai-input {
    font-size: 16px;
  }
  .vp-ai-messages {
    padding: 16px 14px;
  }
}

/* ── 21. Contact form — 1 cột mobile ── */
@media (max-width: 767px) {
  .vp-feedback-grid,
  .vp-form-row-2col {
    grid-template-columns: 1fr !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════════
   VIETPOT_HOME_MOTION_GALLERY_2026
   Section gallery hình ảnh chuyển động — Trang chủ
   Nằm giữa "Bán chạy trong tháng" và "Thiết kế để cây xanh phát triển tốt hơn".
════════════════════════════════════════════════════════════════════════════ */

/* ── Section wrapper ── */
.vp-home-motion-gallery {
  padding: 80px 0 90px;
  background: #f8f5f0;
  position: relative;
}

/* ── Header text ── */
.vp-mg-header-wrap {
  max-width: 680px;
  margin: 0 auto 52px;
  padding: 0 24px;
  text-align: center;
}

.vp-mg-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #1b6f49;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vp-mg-title {
  margin: 0 0 16px;
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(30px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: #17211c;
  letter-spacing: -0.02em;
}

.vp-mg-subtitle {
  margin: 0;
  font-size: clamp(14px, 1.5vw, 17px);
  color: #7a7568;
  line-height: 1.6;
}

/* ── Marquee container — hosts fade masks ── */
.vp-motion-gallery-marquee {
  position: relative;
  overflow: hidden;
}

/* Fade mask trái & phải */
.vp-motion-gallery-marquee::before,
.vp-motion-gallery-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.vp-motion-gallery-marquee::before {
  left: 0;
  background: linear-gradient(to right, #f8f5f0 0%, rgba(248,245,240,0) 100%);
}
.vp-motion-gallery-marquee::after {
  right: 0;
  background: linear-gradient(to left, #f8f5f0 0%, rgba(248,245,240,0) 100%);
}

/* ── Từng hàng ── */
.vp-motion-gallery-row {
  overflow: hidden;
  margin-bottom: 18px;
}
.vp-motion-gallery-row:last-child {
  margin-bottom: 0;
}

/* ── Track — strip chứa ảnh gốc + ảnh duplicate ──
   Dùng margin-right thay vì gap: mỗi card chiếm đúng (width + margin-right)px
   nên translate3d(-50%) = đúng 1 bộ ảnh → loop seamless không bị giật.
*/
.vp-motion-gallery-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

/* ── Card ── */
.vp-motion-gallery-card {
  flex-shrink: 0;
  width: 370px;
  height: 278px;
  margin-right: 22px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(13,34,27,.10), 0 1px 4px rgba(13,34,27,.06);
  background: #ddd8cc;
}

.vp-motion-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}

.vp-motion-gallery-card:hover img {
  transform: scale(1.05);
}

/* ── Keyframes ── */
@keyframes vp-marquee-ltr {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@keyframes vp-marquee-rtl {
  from { transform: translate3d(-50%, 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}

.vp-mg-row--ltr .vp-motion-gallery-track {
  animation: vp-marquee-ltr 52s linear infinite;
}

.vp-mg-row--rtl .vp-motion-gallery-track {
  animation: vp-marquee-rtl 58s linear infinite;
}

/* Hover toàn marquee → pause */
.vp-motion-gallery-marquee:hover .vp-motion-gallery-track {
  animation-play-state: paused;
}

/* ── Reduced Motion — dừng animation, cho scroll ngang thủ công ── */
@media (prefers-reduced-motion: reduce) {
  .vp-motion-gallery-track {
    animation: none !important;
    width: auto;
  }
  .vp-motion-gallery-row {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #c8bfb2 transparent;
  }
  .vp-motion-gallery-row::-webkit-scrollbar { height: 4px; }
  .vp-motion-gallery-row::-webkit-scrollbar-track { background: transparent; }
  .vp-motion-gallery-row::-webkit-scrollbar-thumb { background: #c8bfb2; border-radius: 4px; }
  .vp-motion-gallery-card[aria-hidden="true"] { display: none; }
}

/* ── Laptop ≤1199px ── */
@media (max-width: 1199px) {
  .vp-motion-gallery-card {
    width: 330px;
    height: 248px;
    border-radius: 20px;
    margin-right: 18px;
  }
  .vp-motion-gallery-marquee::before,
  .vp-motion-gallery-marquee::after { width: 100px; }
}

/* ── Tablet ≤1023px ── */
@media (max-width: 1023px) {
  .vp-home-motion-gallery { padding: 64px 0 72px; }
  .vp-mg-header-wrap { margin-bottom: 40px; }
  .vp-motion-gallery-card {
    width: 290px;
    height: 218px;
    border-radius: 18px;
    margin-right: 16px;
  }
}

/* ── Mobile ≤767px ── */
@media (max-width: 767px) {
  .vp-home-motion-gallery { padding: 52px 0 60px; }
  .vp-mg-header-wrap { margin-bottom: 32px; padding: 0 20px; }
  .vp-motion-gallery-card {
    width: 248px;
    height: 186px;
    border-radius: 16px;
    margin-right: 14px;
  }
  .vp-motion-gallery-row { margin-bottom: 12px; }
  .vp-motion-gallery-marquee::before,
  .vp-motion-gallery-marquee::after { width: 56px; }
  .vp-mg-row--ltr .vp-motion-gallery-track { animation-duration: 34s; }
  .vp-mg-row--rtl .vp-motion-gallery-track { animation-duration: 40s; }
}

/* ── Mobile nhỏ ≤479px ── */
@media (max-width: 479px) {
  .vp-motion-gallery-card {
    width: 210px;
    height: 158px;
    border-radius: 14px;
    margin-right: 12px;
  }
  .vp-mg-row--ltr .vp-motion-gallery-track { animation-duration: 28s; }
  .vp-mg-row--rtl .vp-motion-gallery-track { animation-duration: 32s; }
}

/* ════════════════════════════════════════════════════════════════════════════
   VIETPOT_SHOP_SALE_CTA_PRIORITY_FIX_2026
   Product card: sale badge rõ, giá gạch ngang, CTA đồng đều.
════════════════════════════════════════════════════════════════════════════ */

/* ── 1. Price row — thay thế targeting <strong> bằng WC price spans ── */
.vp-shop-product-price-row {
  flex-wrap: wrap;
  align-items: baseline;
  row-gap: 3px;
}

/* Giá bình thường (non-sale): span trực tiếp trong price-row */
.vp-shop-product-price-row > .woocommerce-Price-amount,
.vp-shop-product-price-row > .price > .woocommerce-Price-amount {
  color: #1b6f49;
  font-size: 18px;
  font-weight: 800;
}

/* Giá sau giảm (<ins>) */
.vp-shop-product-price-row ins {
  text-decoration: none;
  color: #1b6f49;
  font-size: 18px;
  font-weight: 800;
}
.vp-shop-product-price-row ins .woocommerce-Price-amount {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/* Giá gốc bị gạch (<del>) */
.vp-shop-product-price-row del {
  color: rgba(17, 17, 17, 0.4);
  font-size: 13px;
  font-weight: 500;
  order: -1; /* del hiển thị trước ins */
}
.vp-shop-product-price-row del .woocommerce-Price-amount {
  color: inherit;
  font-size: inherit;
}

/* "Tiết kiệm X%" helper text */
.vp-shop-save-text {
  display: block;
  width: 100%;
  font-size: 11px;
  color: #c0392b;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: 1px;
}

/* ── 2. Sale badge — góc trái trên, nổi bật hơn ── */
.vp-shop-product-image .vp-shop-sale-badge {
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 900;
  background: #c0392b;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(192, 57, 43, 0.35);
  letter-spacing: 0.03em;
}

/* ── 3. Cat badge + sale badge không chồng — sale trên, cat dưới ── */
.vp-shop-product-image .vp-shop-cat-label {
  top: auto;
  bottom: 12px;
  right: 12px;
  left: auto;
}

/* ── 4. CTA buttons — đồng đều chiều cao, text không bị cắt ── */
.vp-shop-product-actions a {
  min-height: 40px;
  font-size: 13px;
  padding: 0 14px;
  white-space: nowrap;
}

/* Nút "Thêm vào giỏ" — giữ màu nền cam nhạt */
.vp-shop-cart-btn {
  color: #1b6f49;
  background: #f0e8da;
  border: 1.5px solid transparent;
  transition: background .18s, border-color .18s;
}
.vp-shop-cart-btn:hover {
  background: #e6ddd0;
  border-color: rgba(27, 111, 73, 0.18);
}

/* ── 5. Mobile — card không bị vỡ, CTA wrap đẹp ── */
@media (max-width: 479px) {
  .vp-shop-product-actions {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .vp-shop-product-actions a {
    justify-content: center;
  }
}

/* ════════════════════════════════════════════════════════════════
   VIETPOT_HOME_BESTSELLER_CARDS_2026
   Redesign: ranking badges · top-1 treatment · sales box · benefits
   ════════════════════════════════════════════════════════════════ */

/* ── Carousel track: flex-start so card #1 doesn't stretch others ── */
.vp-bsc-track {
  align-items: flex-start;
}

/* ── Base card reset with improved defaults ── */
.vp-bs-card {
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(13, 34, 27, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.vp-bs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(13, 34, 27, 0.13);
}

/* ── Rank badge variants ── */
.vp-bs-rank {
  width: 32px;
  height: 32px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
/* #1 — gold */
.vp-bs-rank--1 {
  background: #c9960c;
  color: #fff;
  box-shadow: 0 3px 10px rgba(201, 150, 12, 0.42);
}
/* #2 — steel teal */
.vp-bs-rank--2 {
  background: #2e7d5e;
  color: #fff;
  box-shadow: 0 2px 8px rgba(27, 111, 73, 0.3);
}
/* #3 — muted slate */
.vp-bs-rank--3 {
  background: #5f7a6e;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}
/* #4+ — grey-green */
.vp-bs-rank--n {
  background: rgba(27, 111, 73, 0.12);
  color: #2d5c45;
  box-shadow: none;
}

/* ── Card #1 (top / best-seller) special treatment ── */
.vp-bs-card--top {
  border: 1.5px solid rgba(201, 150, 12, 0.35);
  box-shadow: 0 6px 28px rgba(201, 150, 12, 0.14), 0 2px 8px rgba(13, 34, 27, 0.06);
  background: linear-gradient(160deg, #fffdf7 0%, #ffffff 55%);
}
.vp-bs-card--top:hover {
  box-shadow: 0 18px 44px rgba(201, 150, 12, 0.2), 0 4px 16px rgba(13, 34, 27, 0.1);
}

/* ── Crown / best-seller header strip ── */
.vp-bs-top-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px 4px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a87808;
}

/* ── BEST SELLER overlay label inside image ── */
.vp-bs-top-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 6px 10px;
  background: linear-gradient(0deg, rgba(201, 150, 12, 0.9) 0%, rgba(201, 150, 12, 0.6) 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

/* ── Image media wrapper: ensure overflow is visible for rank badge ── */
.vp-bs-media {
  border-radius: 16px;
  margin: 10px;
}
.vp-bs-card--top .vp-bs-media {
  margin: 0 10px 10px;
  border-radius: 16px;
}

/* ── Sales box — upgraded to block style ── */
.vp-bs-sales {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 10px;
  background: rgba(27, 111, 73, 0.08);
  color: #1b6f49;
  font-size: 12px;
  font-weight: 700;
  width: 100%;
  box-sizing: border-box;
}
.vp-bs-sales strong {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.vp-bs-sales span {
  font-size: 11px;
  font-weight: 600;
  color: #3a7a5e;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
/* Top-1 gold variant */
.vp-bs-sales--top {
  background: rgba(201, 150, 12, 0.1);
  color: #a87808;
}
.vp-bs-sales--top span {
  color: #a87808;
}

/* ── Price ── */
.vp-bs-price {
  color: #1b6f49;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

/* ── CTA link ── */
.vp-bs-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #1b6f49;
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 0 0;
  border-top: 1px solid rgba(27, 111, 73, 0.1);
  margin-top: 2px;
  transition: gap 0.15s ease;
}
.vp-bs-card:hover .vp-bs-cta {
  gap: 8px;
}

/* ── Lead: benefit pills ── */
.vp-bsc-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.vp-bsc-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #3d5249;
}
.vp-bsc-benefit svg {
  flex-shrink: 0;
  color: #1b6f49;
  stroke: #1b6f49;
}

/* ── Responsive: tablet ── */
@media (max-width: 900px) {
  .vp-bs-top-header {
    padding: 8px 12px 2px;
    font-size: 10px;
  }
  .vp-bsc-benefits {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 20px;
  }
}

/* ── Responsive: mobile ── */
@media (max-width: 620px) {
  .vp-bs-card--top {
    border-width: 1.5px;
  }
  .vp-bs-top-header {
    font-size: 10px;
    padding: 8px 10px 2px;
  }
  .vp-bs-sales {
    padding: 5px 10px;
  }
  .vp-bs-sales strong {
    font-size: 13px;
  }
  .vp-bs-price {
    font-size: 16px;
  }
  .vp-bsc-benefit {
    font-size: 12px;
  }
}

/* ════════════════════════════════════════════════════════════════
   VIETPOT_MOBILE_LAYOUT_FIX_2026
   Fix: BSC carousel collapse, hamburger visibility, floating
   social footprint, motion gallery spacing.
   ════════════════════════════════════════════════════════════════ */

/* ── 1. BSC Carousel: fill parent width khi xếp cột (≤900px) ──────────────
   Khi .vp-bsc-inner chuyển sang flex-direction:column + align-items:flex-start,
   .vp-bsc-carousel-wrap (flex:1) không tự giãn ngang → clip.offsetWidth = 0
   → JS tính cardWidth() = 0 → tất cả thẻ collapse → khoảng trắng lớn.
   Fix: ép width:100% để clip có kích thước đúng. */
@media (max-width: 900px) {
  .vp-bsc-carousel-wrap {
    width: 100%;
    align-self: stretch;
  }
}

/* ── 2. BSC lead panel mobile (≤620px) ── */
@media (max-width: 620px) {
  .vp-bsc-section {
    padding-top: 36px;
  }
  .vp-bsc-lead {
    width: 100%;
    max-width: 100%;
  }
  .vp-bsc-desc {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .vp-bsc-benefits {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin-top: 14px;
  }
  .vp-bsc-benefit {
    font-size: 11px;
  }
}

/* ── 3. BSC: ẩn benefit pills trên mobile rất nhỏ để tiết kiệm chiều dọc ── */
@media (max-width: 479px) {
  .vp-bsc-benefits {
    display: none;
  }
}

/* ── 4. Mobile hamburger toggle: đảm bảo hiển thị và trên mọi lớp ── */
@media (max-width: 767px) {
  .vp-mobile-toggle {
    display: flex !important;
    z-index: 100001;
  }
  .vp-mobile-drawer {
    z-index: 100000;
  }
}

/* ── 5. Floating social (≤640px): thu nhỏ thêm để giảm chiếm diện tích ── */
@media (max-width: 640px) {
  .vp-social-float {
    gap: 8px;
    right: 12px;
  }
  .vp-sf-btn {
    width: 46px !important;
    height: 46px !important;
  }
  .vp-sf-btn svg {
    width: 20px !important;
    height: 20px !important;
  }
  .vp-scroll-top {
    width: 40px !important;
    height: 40px !important;
  }
  .vp-scroll-top svg {
    width: 20px !important;
    height: 20px !important;
  }
}

/* ── 6. Floating social (≤479px): chỉ giữ Zalo + scroll-top, ẩn FB + Messenger ── */
@media (max-width: 479px) {
  .vp-social-float {
    bottom: 72px;
    right: 10px;
    gap: 7px;
  }
  .vp-sf-facebook,
  .vp-sf-messenger {
    display: none;
  }
}

/* ── 7. Motion gallery: padding nhỏ hơn trên mobile ── */
@media (max-width: 767px) {
  .vp-home-motion-gallery {
    padding: 48px 0 52px;
  }
  .vp-mg-header-wrap {
    margin-bottom: 32px;
    padding: 0 16px;
  }
}
@media (max-width: 479px) {
  .vp-home-motion-gallery {
    padding: 32px 0 40px;
  }
  .vp-mg-header-wrap {
    margin-bottom: 24px;
  }
}

/* ════════════════════════════════════════════════════════════════
   VIETPOT_FLOATING_ATTENTION_2026
   Attention animation cho floating social + chatbot trigger.
   Chu kỳ: 10s đứng yên → 0.7s rung nhẹ → lặp lại.
   Chỉ dùng transform — không animate top/left/margin/opacity.
   ════════════════════════════════════════════════════════════════ */

/* ── Keyframes: 93% quiet, 7% shake (≈ 10s + 0.75s ở duration 10.7s) ── */
@keyframes vp-attention-wobble {
  0%,  93%  { transform: translateX(0); }
  94%       { transform: translateX(-2px); }
  95%       { transform: translateX(2px); }
  96%       { transform: translateX(-2px); }
  97%       { transform: translateX(2px); }
  98%       { transform: translateX(-1px); }
  99%       { transform: translateX(1px); }
  100%      { transform: translateX(0); }
}

/* ── Social float buttons: apply animation, stagger pha ── */
/* Tổng chu kỳ 10.7s — mỗi nút lệch ¼ chu kỳ (2.675s) để không rung cùng lúc */
.vp-sf-btn {
  animation: vp-attention-wobble 10.7s ease-in-out infinite;
  will-change: transform;
}
.vp-sf-zalo      { animation-delay:   0s; }
.vp-sf-facebook  { animation-delay: -5.35s; }   /* lệch nửa chu kỳ */
.vp-sf-messenger { animation-delay: -2.675s; }  /* lệch ¼ chu kỳ */

/* ── Chatbot trigger: stagger ¾ chu kỳ so với Zalo ── */
.chatbot-trigger {
  animation: vp-attention-wobble 10.7s ease-in-out infinite;
  animation-delay: -8.025s;
  will-change: transform;
}

/* ── Scroll-to-top: KHÔNG rung ── */
.vp-scroll-top {
  animation: none !important;
  will-change: auto;
}

/* ── Hover desktop: dừng rung, scale 1.08, shadow ── */
/* Dùng !important để ghi đè giá trị transform của @keyframes khi hover */
@media (hover: hover) {
  .vp-sf-btn:hover {
    animation-play-state: paused;
    transform: scale(1.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3), 0 2px 8px rgba(0, 0, 0, .16) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .chatbot-trigger:hover {
    animation-play-state: paused;
    transform: scale(1.1) !important;
    transition: transform 0.25s ease;
  }
}

/* ── Chatbot đang mở: dừng animation trigger (class thêm bởi JS) ── */
.chatbot-trigger.vp-chat-open {
  animation-play-state: paused !important;
  transform: translateX(0) !important;
}

/* ════════════════════════════════════════════════════════════════
   VIETPOT_FORCE_POPUP_2026
   Hệ popup ưu đãi thành viên mới — class riêng, không phụ thuộc code cũ.
   z-index: 2147483000 — trên mọi thứ (header, chatbot, v.v.).
   ════════════════════════════════════════════════════════════════ */

/* ── Overlay ── */
.vp-force-popup-root {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.vp-force-popup-root.is-visible {
  display: flex;
  opacity: 1;
  visibility: visible;
}

/* ── Card 2 cột ── */
.vp-force-popup-card {
  position: relative;
  display: flex;
  flex-direction: row;
  max-width: 860px;
  width: 100%;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24), 0 4px 16px rgba(0, 0, 0, 0.1);
  max-height: 90vh;
}

/* ── Close ── */
.vp-force-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
  line-height: 1;
}
.vp-force-popup-close:hover {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.2);
}

/* ── Left: nội dung ── */
.vp-fpp-left {
  flex: 1;
  padding: 48px 44px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fefcf8;
  min-width: 0;
}

/* ── Badge ── */
.vp-fpp-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(27, 111, 73, 0.1);
  color: #1b6f49;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  width: fit-content;
}

/* ── Heading ── */
.vp-fpp-heading {
  margin: 0 0 14px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: #121b18;
  letter-spacing: -0.02em;
}

/* ── Desc ── */
.vp-fpp-desc {
  margin: 0 0 22px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #5a6b62;
}

/* ── Code row ── */
.vp-fpp-code-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.vp-fpp-code-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #7a8b82;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.vp-fpp-code {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(135deg, #b8860b, #c9960c, #e0a820);
  color: #fff;
  font-family: 'DM Sans', system-ui, monospace;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.14em;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(201, 150, 12, 0.32);
}

/* ── Countdown ── */
.vp-fpp-countdown {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 24px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  color: #6b7c74;
}
.vp-fpp-countdown strong {
  color: #c9960c;
  font-weight: 900;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}

/* ── CTA button ── */
.vp-force-popup-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  background: #1b6f49;
  color: #fff !important;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: background 0.18s ease, transform 0.14s ease, box-shadow 0.18s ease;
  box-shadow: 0 4px 18px rgba(27, 111, 73, 0.35);
  width: 100%;
  margin-bottom: 12px;
  text-align: center;
}
.vp-force-popup-cta:hover {
  background: #14543a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(27, 111, 73, 0.45);
  color: #fff !important;
}

/* ── Note ── */
.vp-fpp-note {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 12px;
  color: #9aaa9e;
  text-align: center;
  line-height: 1.5;
}

/* ── Right: ảnh ── */
.vp-fpp-right {
  flex: 0 0 300px;
  position: relative;
  overflow: hidden;
  background: #e8f0eb;
}
.vp-fpp-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Mobile ≤640px: 1 cột, bottom-sheet ── */
@media (max-width: 640px) {
  .vp-force-popup-root {
    align-items: flex-end;
    padding: 0;
  }
  .vp-force-popup-card {
    flex-direction: column-reverse;
    max-width: 100%;
    width: 100%;
    border-radius: 24px 24px 0 0;
    max-height: 88vh;
    overflow-y: auto;
  }
  .vp-fpp-left {
    padding: 28px 24px 36px;
  }
  .vp-fpp-right {
    flex: none;
    height: 200px;
    width: 100%;
  }
  .vp-fpp-heading {
    font-size: 22px;
  }
  .vp-fpp-desc {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .vp-fpp-code-wrap {
    flex-wrap: wrap;
  }
  .vp-force-popup-cta {
    font-size: 13px;
    padding: 14px 20px;
  }
}

/* ════════════════════════════════════════════════════════════════
   VIETPOT_SMART_OFFERS_FIX_2026
   Slider fix: JS-driven widths, không dùng CSS 100% trên track/slide.
   Viewport không có flex:1/min-height:0 để tránh collapse height.
   ════════════════════════════════════════════════════════════════ */

/* ── Card layout: column thay vì row mặc định của vp-force-popup-card ── */
.vp-fps-card {
  flex-direction: column !important;
  max-width: 860px;
}

/* ── Slider viewport: overflow hidden, width 100%, height = nội dung slide ── */
.vp-fps-viewport {
  overflow: hidden;
  width: 100%;
  /* KHÔNG dùng flex:1 hay min-height:0 — tránh collapse về height:0
     trong auto-height flex column container */
}

/* ── Track: flex row, không ràng buộc width — JS set width từng slide ── */
.vp-fps-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  /* KHÔNG dùng width:100% — track phải dài hơn viewport để slide được */
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── Slide: JS set width = viewport.clientWidth, không dùng flex % ── */
.vp-fps-slide {
  flex-shrink: 0;
  /* width được JS set: slide.style.width = viewportEl.clientWidth + 'px' */
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* ── Summer slide accent ── */
.vp-fps-slide--summer .vp-fpp-left {
  background: #fff8ed;
}
.vp-fpp-badge--summer {
  background: rgba(230, 140, 0, 0.12) !important;
  color: #a86300 !important;
}
.vp-fpp-code--gold {
  background: linear-gradient(135deg, #e0832a, #e0a820, #f0c040) !important;
}
.vp-fpp-code-wrap--gold .vp-fpp-code-label {
  color: #a86300;
}
.vp-fpp-discount-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  color: #7a6140;
}
.vp-fpp-discount-tag strong {
  font-size: 28px;
  font-weight: 900;
  color: #e07700;
  line-height: 1;
}
.vp-force-popup-cta--summer {
  background: #e07700 !important;
  box-shadow: 0 4px 18px rgba(224, 119, 0, 0.35) !important;
}
.vp-force-popup-cta--summer:hover {
  background: #b35c00 !important;
  box-shadow: 0 8px 24px rgba(224, 119, 0, 0.45) !important;
}

/* ── Prev / Next nav buttons ── */
.vp-fps-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.vp-fps-nav:hover {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.vp-fps-nav--prev { left: 10px; }
.vp-fps-nav--next { right: 10px; }

/* ── Dots ── */
.vp-fps-dots-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 0 6px;
  flex-shrink: 0;
}
.vp-fps-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.25);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.vp-fps-dot.is-active {
  background: #1b6f49;
  border-color: #1b6f49;
  transform: scale(1.2);
}

/* ── Session hide checkbox ── */
.vp-fps-session-hide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0 14px;
  flex-shrink: 0;
}
.vp-fps-session-hide label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 12px;
  color: #9aaa9e;
  cursor: pointer;
  user-select: none;
}
.vp-fps-session-hide input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: #1b6f49;
  cursor: pointer;
  flex-shrink: 0;
}

/* ── Mobile ≤640px slider adjustments ── */
@media (max-width: 640px) {
  .vp-fps-slide {
    flex-direction: column-reverse;
  }
  .vp-fps-nav { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   VIETPOT_SMART_POPUP_OFFERS_2026 — Account Offers Section
   Thẻ ưu đãi trong dashboard tài khoản: "Ưu đãi đã nhận"
   ════════════════════════════════════════════════════════════════ */

.vp-offers-section {
  margin-top: 40px;
}

.vp-offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

/* ── Offer card base ── */
.vp-offer-card {
  position: relative;
  background: #fff;
  border: 1.5px solid #e8eeeb;
  border-radius: 16px;
  padding: 24px 22px 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.2s;
}
.vp-offer-card:hover {
  box-shadow: 0 6px 24px rgba(27, 111, 73, 0.12);
}
.vp-offer-card--active {
  border-color: rgba(27, 111, 73, 0.3);
}
.vp-offer-card--used {
  opacity: 0.65;
  background: #f5f7f6;
}
.vp-offer-card--seasonal {
  border-color: rgba(224, 119, 0, 0.3);
}

/* Ribbon accent */
.vp-oc-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #1b6f49;
}
.vp-oc-ribbon--summer {
  background: linear-gradient(90deg, #e07700, #e0a820);
}

/* Top row: code + discount badge */
.vp-oc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.vp-oc-code {
  font-family: 'DM Sans', system-ui, monospace;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #1b6f49;
}
.vp-oc-code--gold {
  color: #a86300;
}
.vp-oc-discount {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #1b6f49;
  background: rgba(27, 111, 73, 0.1);
  border-radius: 8px;
  padding: 2px 10px;
}
.vp-oc-discount--gold {
  color: #a86300;
  background: rgba(224, 119, 0, 0.1);
}

.vp-oc-name {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #121b18;
}
.vp-oc-desc {
  margin: 0;
  font-size: 13px;
  color: #6b7c74;
  line-height: 1.55;
}
.vp-oc-status-row {
  margin: 6px 0 2px;
}
.vp-oc-status {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
}
.vp-oc-status--ok {
  background: rgba(27, 111, 73, 0.1);
  color: #1b6f49;
}
.vp-oc-status--used {
  background: rgba(0, 0, 0, 0.06);
  color: #6b7c74;
}
.vp-oc-status--seasonal {
  background: rgba(224, 119, 0, 0.1);
  color: #a86300;
}

/* Actions row */
.vp-oc-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.vp-oc-copy-btn {
  flex: 1;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1.5px solid #1b6f49;
  background: transparent;
  color: #1b6f49;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.vp-oc-copy-btn:hover {
  background: #1b6f49;
  color: #fff;
}
.vp-oc-shop-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 8px;
  background: #1b6f49;
  color: #fff !important;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.18s;
  white-space: nowrap;
}
.vp-oc-shop-btn:hover {
  background: #14543a;
  color: #fff !important;
}
.vp-offer-card--seasonal .vp-oc-copy-btn {
  border-color: #e07700;
  color: #a86300;
}
.vp-offer-card--seasonal .vp-oc-copy-btn:hover {
  background: #e07700;
  color: #fff;
}
.vp-offer-card--seasonal .vp-oc-shop-btn {
  background: #e07700;
}
.vp-offer-card--seasonal .vp-oc-shop-btn:hover {
  background: #b35c00;
}

/* Responsive offers grid */
@media (max-width: 640px) {
  .vp-offers-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Offer card note ── */
.vp-oc-note {
  font-size: 11px;
  color: #9aaa9e;
  margin: 0 0 4px;
  font-style: italic;
}

/* ════════════════════════════════════════════════════════════════
   VIETPOT_SMART_OFFERS_FIX_2026 — Cart/Checkout coupon hint
   Note ưu đãi xuất hiện ở khu vực totals cart + checkout submit
   ════════════════════════════════════════════════════════════════ */

.vp-coupon-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-radius: 10px;
  padding: 12px 16px;
  margin: 0 0 16px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
}
.vp-coupon-hint p {
  margin: 0;
}
.vp-coupon-hint a {
  text-decoration: underline;
}

/* Combo — nền cam nhạt */
.vp-coupon-hint--combo {
  background: #fff7ed;
  border: 1px solid rgba(224, 119, 0, 0.25);
  color: #7c4a00;
}
.vp-coupon-hint--combo svg { stroke: #e07700; }
.vp-coupon-hint--combo a { color: #e07700; }

/* Login hint — nền xanh nhạt */
.vp-coupon-hint--login {
  background: #f0faf5;
  border: 1px solid rgba(27, 111, 73, 0.2);
  color: #1a4a32;
}
.vp-coupon-hint--login svg { stroke: #1b6f49; }
.vp-coupon-hint--login a { color: #1b6f49; }

/* Applied — nền kem xanh */
.vp-coupon-hint--applied {
  background: #f0faf5;
  border: 1px solid rgba(27, 111, 73, 0.3);
  color: #1b6f49;
  font-weight: 600;
}
.vp-coupon-hint--applied svg { stroke: #1b6f49; }

/* Mobile slider */
@media (max-width: 640px) {
  .vp-fps-slide {
    flex-direction: column-reverse;
  }
  .vp-fps-nav { display: none !important; }
}


/* ═══════════════════════════════════════════════════════════════════════════════
   VIETPOT AI — Product Catalog (native WP section)
   ─────────────────────────────────────────────────────────────────────────── */

.vp-ai-catalog {
  max-width: 1280px;
  margin: 48px auto;
  padding: 0 20px;
  font-family: var(--font-sans, sans-serif);
}
.vp-ai-catalog-header { text-align: center; margin-bottom: 24px; }
.vp-ai-catalog-title  { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: var(--vp-dark, #1a2e1e); }
.vp-ai-catalog-subtitle { color: #666; font-size: .875rem; margin-top: 4px; }

/* Tabs */
.vp-ai-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 20px; }
.vp-ai-tab  {
  padding: 8px 18px; border-radius: 999px; border: 1.5px solid #d0d9d2;
  background: #fff; cursor: pointer; font-size: .9rem; font-weight: 500;
  color: #3a5c42; transition: background .2s, color .2s;
}
.vp-ai-tab--active, .vp-ai-tab:hover { background: #2d6a4f; color: #fff; border-color: #2d6a4f; }

/* Controls */
.vp-ai-controls { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.vp-ai-search   { flex: 1 1 200px; min-width: 0; padding: 10px 14px; border-radius: 10px; border: 1.5px solid #c5d5c8; font-size: 1rem; }
.vp-ai-select   { flex: 0 0 auto; padding: 10px 14px; border-radius: 10px; border: 1.5px solid #c5d5c8; font-size: .9rem; background: #fff; }
.vp-ai-search:focus, .vp-ai-select:focus { outline: 2px solid #2d6a4f; border-color: transparent; }

/* Grid */
.vp-ai-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; }

/* Product Card */
.vp-ai-product-card { border-radius: 14px; border: 1px solid #e5ece7; background: #fff; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s; }
.vp-ai-product-card:hover { box-shadow: 0 6px 24px rgba(45,106,79,.12); }
.vp-ai-card-img-wrap { position: relative; display: block; aspect-ratio: 1; overflow: hidden; background: #f6f8f5; }
.vp-ai-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.vp-ai-product-card:hover .vp-ai-card-img-wrap img { transform: scale(1.04); }

.vp-ai-badges { position: absolute; top: 8px; left: 8px; display: flex; flex-direction: column; gap: 4px; }
.vp-ai-badge-sale { background: #e03e2d; color: #fff; font-size: .72rem; font-weight: 700; padding: 2px 7px; border-radius: 999px; }
.vp-ai-badge-oos  { background: #888; color: #fff; font-size: .72rem; padding: 2px 7px; border-radius: 999px; }

.vp-ai-card-body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.vp-ai-card-cat  { font-size: .75rem; color: #2d6a4f; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.vp-ai-card-name { font-size: .9rem; font-weight: 600; color: #1a2e1e; line-height: 1.35; margin: 0; }
.vp-ai-card-name a { color: inherit; text-decoration: none; }
.vp-ai-card-name a:hover { color: #2d6a4f; }
.vp-ai-card-desc { font-size: .8rem; color: #666; line-height: 1.4; margin: 0; }
.vp-ai-card-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.vp-ai-price     { font-size: 1rem; font-weight: 700; color: #c0392b; }
.vp-ai-price-old { font-size: .8rem; color: #999; text-decoration: line-through; }

.vp-ai-card-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.vp-ai-btn-detail, .vp-ai-btn-cart {
  flex: 1; text-align: center; padding: 8px 10px; border-radius: 8px;
  font-size: .8rem; font-weight: 600; cursor: pointer; text-decoration: none;
  transition: background .2s, color .2s; border: none;
}
.vp-ai-btn-detail { background: #f0f4f1; color: #2d6a4f; }
.vp-ai-btn-detail:hover { background: #2d6a4f; color: #fff; }
.vp-ai-btn-cart   { background: #2d6a4f; color: #fff; }
.vp-ai-btn-cart:hover { background: #1a4a32; }
.vp-ai-btn-detail--oos { opacity: .6; pointer-events: none; }

/* States */
.vp-ai-loading { text-align: center; padding: 40px; color: #555; }
.vp-ai-spinner { display: inline-block; width: 24px; height: 24px; border: 3px solid #d0dbd2; border-top-color: #2d6a4f; border-radius: 50%; animation: vp-spin .7s linear infinite; vertical-align: middle; margin-right: 8px; }
@keyframes vp-spin { to { transform: rotate(360deg); } }
.vp-ai-empty, .vp-ai-error { text-align: center; padding: 40px; color: #888; }
.vp-ai-empty a { color: #2d6a4f; }

/* Pagination */
.vp-ai-pagination { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 24px; }
.vp-ai-page-btn   { padding: 8px 18px; border-radius: 8px; border: 1.5px solid #d0d9d2; background: #fff; cursor: pointer; font-weight: 500; }
.vp-ai-page-btn:hover { background: #2d6a4f; color: #fff; border-color: #2d6a4f; }
.vp-ai-page-info  { font-size: .85rem; color: #666; }

/* Combo groups */
.vp-ai-combo-group  { margin-bottom: 36px; }
.vp-ai-combo-title  { font-size: 1.1rem; font-weight: 700; color: #1a2e1e; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid #e5ece7; }
.vp-ai-combo-msg    { background: #f0f7f2; border-radius: 10px; padding: 14px 18px; color: #2d6a4f; font-weight: 500; margin-bottom: 24px; }

/* Product image — explicit display/size so no blank area */
.vp-ai-prod-img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* Toast notification */
.vp-ai-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  max-width: 340px;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.vp-ai-toast--show  { opacity: 1; transform: translateY(0); pointer-events: auto; }
.vp-ai-toast--success { background: #2d6a4f; color: #fff; }
.vp-ai-toast--error   { background: #c0392b; color: #fff; }
.vp-ai-toast-link { color: #fff; font-weight: 700; text-decoration: underline; }

/* Results wrapper — ensure it fills correctly */
.vp-ai-results { min-height: 120px; }

/* Mobile */
@media (max-width: 600px) {
  .vp-ai-controls { flex-direction: column; }
  .vp-ai-select   { width: 100%; }
  .vp-ai-grid     { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .vp-ai-card-actions { flex-direction: column; }
  .vp-ai-tabs     { gap: 6px; }
  .vp-ai-tab      { font-size: .82rem; padding: 7px 12px; }
  .vp-ai-toast    { right: 12px; left: 12px; max-width: none; }
}
@media (max-width: 400px) {
  .vp-ai-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   VIETPOT AI — Product Cards v2 (new class names, no conflict với Storefront/WC)
   Class prefix: vp-ai-pc (card), vp-ai-pi (image), vp-ai-pb (body)
   ─────────────────────────────────────────────────────────────────────────── */

/* Card article */
.vp-ai-pc {
  border-radius: 14px;
  border: 1px solid #e5ece7;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.vp-ai-pc:hover {
  box-shadow: 0 6px 28px rgba(45,106,79,.13);
  transform: translateY(-2px);
}

/* Image link — aspect-ratio on THE LINK element (not img) = bulletproof */
.vp-ai-pi {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f6f4ef;
  overflow: hidden;
  flex-shrink: 0;
  text-decoration: none;
}

/* The actual img — fill the link container absolutely */
.vp-ai-pi img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s;
}
.vp-ai-pc:hover .vp-ai-pi img { transform: scale(1.05); }

/* Image badges (sale / out-of-stock) */
.vp-ai-pi-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  line-height: 1.4;
}
.vp-ai-pi-sale { background: #e03e2d; color: #fff; }
.vp-ai-pi-oos  { background: #888;    color: #fff; }

/* Body */
.vp-ai-pb {
  padding: 12px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  position: relative;
  z-index: 1; /* sit above any pseudo-element, no overlay from theme */
}

/* Category label */
.vp-ai-pb-cat {
  font-size: .72rem;
  font-weight: 700;
  color: #2d6a4f;
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1;
}

/* Title — 2-line clamp so it never grows into image area */
.vp-ai-pb-title {
  font-size: .9rem;
  font-weight: 600;
  color: #1a2e1e;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vp-ai-pb-title a { color: inherit; text-decoration: none; }
.vp-ai-pb-title a:hover { color: #2d6a4f; }

/* Short description */
.vp-ai-pb-desc {
  font-size: .78rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer row (price + button) */
.vp-ai-pb-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 6px;
}

/* Price — WooCommerce price_html spans */
.vp-ai-pb-price { line-height: 1.2; }
.vp-ai-pb-price .woocommerce-Price-amount { font-size: .95rem; font-weight: 700; color: #c0392b; }
.vp-ai-pb-price del .woocommerce-Price-amount { font-size: .8rem; color: #999; font-weight: 400; text-decoration: line-through; }
.vp-ai-pb-price ins { text-decoration: none; }
.vp-ai-pb-price del { opacity: .7; }

/* Buttons */
.vp-ai-pb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: background .2s, color .2s, opacity .2s;
  flex-shrink: 0;
}
.vp-ai-pb-btn:disabled { opacity: .6; cursor: not-allowed; }

.vp-ai-pb-btn--primary {
  background: #2d6a4f;
  color: #fff;
}
.vp-ai-pb-btn--primary:hover:not(:disabled) { background: #1a4a32; color: #fff; }

.vp-ai-pb-btn--cart {
  background: #2d6a4f;
  color: #fff;
}
.vp-ai-pb-btn--cart:hover:not(:disabled) { background: #1a4a32; color: #fff; }

.vp-ai-pb-btn--alt {
  background: #f0f4f1;
  color: #2d6a4f;
  border: 1px solid #c5d5c8;
}
.vp-ai-pb-btn--alt:hover { background: #e0ebe3; }

/* Pagination v2 */
.vp-ai-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.vp-ai-pager-btn {
  padding: 8px 18px;
  border-radius: 8px;
  border: 1.5px solid #d0d9d2;
  background: #fff;
  cursor: pointer;
  font-weight: 500;
  font-size: .9rem;
  transition: background .2s, color .2s;
}
.vp-ai-pager-btn:hover { background: #2d6a4f; color: #fff; border-color: #2d6a4f; }
.vp-ai-pager-info { font-size: .85rem; color: #666; }

/* Mobile overrides for v2 cards */
@media (max-width: 600px) {
  .vp-ai-pb-footer { flex-direction: column; align-items: stretch; }
  .vp-ai-pb-btn    { width: 100%; justify-content: center; }
  .vp-ai-pager     { gap: 8px; }
}

/* Override Storefront/WooCommerce article resets that might bleed in */
#vp-ai-catalog article.vp-ai-pc { margin: 0; padding: 0; list-style: none; }
#vp-ai-catalog article.vp-ai-pc::before,
#vp-ai-catalog article.vp-ai-pc::after { display: none; }
#vp-ai-catalog .vp-ai-pi::before,
#vp-ai-catalog .vp-ai-pi::after { display: none; }

/* ═══════════════════════════════════════════════════════════════════
   VIETPOT_HOME_CATEGORY_SHOWCASE_2026  (v2 — upgraded)
   Homepage category showcase section (#vp-home-showcase)
   All classes prefixed .vphs- to avoid theme conflicts.
═══════════════════════════════════════════════════════════════════ */

#vp-home-showcase {
  background: #f9f7f3;
  padding: 60px 0 72px;
}

.vphs-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Section header ─────────────────────────────────────────────── */
.vphs-header {
  text-align: center;
  margin-bottom: 32px;
}
.vphs-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: #2d5a27;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.vphs-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #1a2e1e;
  margin: 0 0 10px;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.vphs-subheading {
  font-size: clamp(.9rem, 1.4vw, 1rem);
  color: #6b7c6e;
  margin: 0;
  line-height: 1.6;
}

/* ── Toolbar ────────────────────────────────────────────────────── */
.vphs-toolbar {
  display: flex;
  align-items: center;
  gap: 12px 16px;
  margin-bottom: 40px;
}
.vphs-pills-wrap {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}
.vphs-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vphs-pill {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1.5px solid #c8daca;
  background: #fff;
  color: #2d5a27;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(45,90,39,.06);
  transition: background .18s, border-color .18s, color .18s, box-shadow .18s;
}
.vphs-pill:hover,
.vphs-pill:focus-visible {
  background: #2d5a27;
  border-color: #2d5a27;
  color: #fff;
  box-shadow: 0 4px 12px rgba(45,90,39,.18);
  outline: none;
}

/* Search */
.vphs-search-form {
  display: flex;
  align-items: center;
  border: 1.5px solid #c8daca;
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
  flex: 0 1 280px;
  min-width: 180px;
  box-shadow: 0 1px 3px rgba(45,90,39,.06);
  transition: border-color .18s, box-shadow .18s;
}
.vphs-search-form:focus-within {
  border-color: #2d5a27;
  box-shadow: 0 0 0 3px rgba(45,90,39,.12);
}
.vphs-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 9px 14px;
  font-size: .85rem;
  color: #1a2e1e;
  outline: none;
  min-width: 0;
}
.vphs-search-input::placeholder { color: #aab8ac; }
.vphs-search-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: #2d5a27;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s;
}
.vphs-search-btn:hover { background: #edf4ee; }

/* ── Category block ─────────────────────────────────────────────── */
.vphs-block { margin-bottom: 52px; }
.vphs-block:last-child { margin-bottom: 0; }

.vphs-block-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0ece2;
}
.vphs-block-head-left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}
.vphs-block-accent {
  flex-shrink: 0;
  width: 4px;
  height: 48px;
  background: linear-gradient(180deg, #2d5a27 0%, #7abf79 100%);
  border-radius: 4px;
  margin-top: 2px;
}
.vphs-block-title-group { min-width: 0; }
.vphs-block-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a2e1e;
  margin: 0 0 3px;
  line-height: 1.2;
}
.vphs-block-desc {
  font-size: .82rem;
  color: #6b7c6e;
  margin: 0;
  line-height: 1.45;
}
.vphs-block-head-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding-top: 4px;
}
.vphs-block-sale-pill,
.vphs-block-count-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.vphs-block-sale-pill {
  background: #fff3eb;
  color: #b84e00;
  border: 1px solid #f5c99a;
}
.vphs-block-count-pill {
  background: #edf4ee;
  color: #2d5a27;
  border: 1px solid #c8daca;
}
.vphs-block-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .82rem;
  font-weight: 700;
  color: #2d5a27;
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid #c8daca;
  border-radius: 999px;
  padding: 6px 14px;
  background: #fff;
  transition: background .18s, border-color .18s, color .18s, gap .15s;
}
.vphs-block-more:hover {
  background: #2d5a27;
  border-color: #2d5a27;
  color: #fff;
  gap: 8px;
}

/* ── Product grid ───────────────────────────────────────────────── */
.vphs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ── Product card ───────────────────────────────────────────────── */
.vphs-card {
  background: #fff;
  border: 1px solid rgba(17,17,17,.07);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(17,17,17,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.vphs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(17,17,17,.10);
}
.vphs-card--sale .vphs-card-img-wrap { background: #fdf5f4; }

/* Image wrapper */
.vphs-card-img-wrap {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f7f2ea;
  overflow: hidden;
  flex-shrink: 0;
  text-decoration: none;
}
.vphs-card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .38s ease;
}
.vphs-card--ph .vphs-card-img {
  object-fit: contain;
  padding: 14px;
  opacity: .5;
}
.vphs-card:hover .vphs-card-img { transform: scale(1.05); }

/* Sale badge — top-left */
.vphs-card-sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #c0392b;
  color: #fff;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .04em;
  padding: 4px 9px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 2;
}

/* Category label — top-right */
.vphs-card-cat-label {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,.88);
  color: #111;
  font-size: .65rem;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: 96px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Body */
.vphs-card-body {
  padding: 12px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

/* Stars rating */
.vphs-card-rating {
  display: flex;
  align-items: center;
  gap: 1px;
  font-size: .78rem;
}
.vphs-star { color: #f0a500; line-height: 1; }
.vphs-star--empty { color: #ddd; }
.vphs-card-rating-count {
  margin-left: 4px;
  font-size: .7rem;
  color: rgba(17,17,17,.42);
}

/* Title */
.vphs-card-name {
  margin: 0;
  font-size: .85rem;
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vphs-card-name a { color: inherit; text-decoration: none; }
.vphs-card-name a:hover { color: #2d5a27; }

/* Price */
.vphs-card-price { margin-top: 2px; }
.vphs-card-price .price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 3px 6px;
}
.vphs-card-price .amount {
  font-size: .93rem;
  font-weight: 800;
  color: #1b6f49;
}
.vphs-card-price ins { text-decoration: none; }
.vphs-card-price del { opacity: 1; }
.vphs-card-price del .amount {
  font-size: .76rem;
  font-weight: 400;
  color: rgba(17,17,17,.38);
}

/* CTA */
.vphs-card-actions { margin-top: auto; padding-top: 10px; }
.vphs-card-btn {
  display: block;
  width: 100%;
  padding: 9px 10px;
  border-radius: 10px;
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  line-height: 1.3;
  background: #2d5a27;
  color: #fff;
  transition: background .18s, transform .15s;
}
.vphs-card-btn:hover {
  background: #1a4a18;
  color: #fff;
  transform: translateY(-1px);
}
.vphs-card-btn:active { transform: none; }
.vphs-card-btn--disabled {
  background: #e9ede8;
  color: #9aab9a;
  cursor: not-allowed;
  pointer-events: none;
}

/* Storefront theme resets */
#vp-home-showcase article.vphs-card::before,
#vp-home-showcase article.vphs-card::after { display: none; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .vphs-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .vphs-block-count-pill,
  .vphs-block-sale-pill { display: none; }
}
@media (max-width: 768px) {
  .vphs-block-head { flex-direction: column; gap: 10px; }
  .vphs-block-head-right { align-self: flex-start; }
}
@media (max-width: 600px) {
  #vp-home-showcase { padding: 40px 0 52px; }
  .vphs-inner { padding: 0 14px; }
  .vphs-toolbar { flex-direction: column; align-items: stretch; }
  .vphs-pills-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .vphs-pills-wrap::-webkit-scrollbar { display: none; }
  .vphs-pills { flex-wrap: nowrap; }
  .vphs-search-form { flex: none; width: 100%; min-width: 0; }
  .vphs-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .vphs-block { margin-bottom: 40px; }
  .vphs-block-desc { display: none; }
}
@media (max-width: 400px) {
  .vphs-card-btn { font-size: .72rem; padding: 8px; }
  .vphs-card-name { font-size: .8rem; }
  .vphs-card-body { padding: 10px 11px 13px; }
}

/* ═══════════════════════════════════════════════════════════════════
   VIETPOT_CATEGORY_SHOWCASE_UPGRADE_2026
   Botanical background, 2-button card actions, rating+sold row.
═══════════════════════════════════════════════════════════════════ */

/* ── Botanical background ───────────────────────────────────────── */
#vp-home-showcase {
  background: linear-gradient(175deg, #fffdf8 0%, #f5f0e6 100%);
  position: relative;
  overflow: hidden;
}

/* Left leaf — monstera silhouette, bottom-left */
#vp-home-showcase::before {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -16px;
  width: 210px;
  height: 270px;
  pointer-events: none;
  z-index: 0;
  opacity: .08;
  transform: rotate(-12deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 260'%3E%3Cpath fill='%232d5a27' d='M12 248 C2 182 8 112 46 72 C84 32 148 16 182 42 C204 58 208 92 192 132 C176 170 144 196 110 218 C76 240 34 256 12 248Z'/%3E%3Cpath fill='none' stroke='%232d5a27' stroke-width='2.5' d='M12 248 C62 168 148 88 182 42'/%3E%3Cpath fill='none' stroke='%232d5a27' stroke-width='1.4' opacity='.65' d='M44 225 C72 192 86 156 78 122'/%3E%3Cpath fill='none' stroke='%232d5a27' stroke-width='1.4' opacity='.65' d='M82 216 C106 180 114 148 102 116'/%3E%3Cpath fill='none' stroke='%232d5a27' stroke-width='1.2' opacity='.5' d='M118 204 C138 172 142 142 128 112'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Right leaf — elongated tropical leaf, bottom-right */
#vp-home-showcase::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -12px;
  width: 160px;
  height: 300px;
  pointer-events: none;
  z-index: 0;
  opacity: .07;
  transform: rotate(8deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 300'%3E%3Cpath fill='%232d5a27' d='M148 284 C122 214 86 148 68 92 C52 40 64 6 92 4 C120 2 140 34 148 84 C156 132 152 202 148 284Z'/%3E%3Cpath fill='none' stroke='%232d5a27' stroke-width='2.5' d='M92 4 C114 82 140 176 148 284'/%3E%3Cpath fill='none' stroke='%232d5a27' stroke-width='1.3' opacity='.6' d='M78 110 C96 100 114 88 130 90'/%3E%3Cpath fill='none' stroke='%232d5a27' stroke-width='1.3' opacity='.6' d='M72 150 C92 138 112 126 130 128'/%3E%3Cpath fill='none' stroke='%232d5a27' stroke-width='1.3' opacity='.6' d='M76 190 C96 176 116 164 134 166'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Ensure inner content is above the leaf pseudo-elements */
.vphs-inner { position: relative; z-index: 1; }

/* ── Card: 2-button action row ──────────────────────────────────── */
/* Override single-button to 2-column grid */
.vphs-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: auto;
  padding-top: 10px;
}
/* When out-of-stock disabled button spans full width */
.vphs-card-actions .vphs-card-btn--disabled {
  grid-column: 1 / -1;
}
/* Override base width:100% now that actions is a grid */
.vphs-card-actions .vphs-card-btn {
  width: auto;
  min-height: 36px;
  padding: 7px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
}

/* Cart button — matches vp-shop-cart-btn style */
.vphs-card-btn--cart {
  background: #f1e6d6;
  color: #1b6f49;
}
.vphs-card-btn--cart:hover {
  background: #e4d4bc;
  color: #1b6f49;
  transform: translateY(-1px);
}

/* Detail button — matches vp-shop-buy-btn style */
.vphs-card-btn--detail {
  background: #111;
  color: #fff;
}
.vphs-card-btn--detail:hover {
  background: #2d5a27;
  color: #fff;
  transform: translateY(-1px);
}

/* ── Rating + sold count row ────────────────────────────────────── */

/* Showcase card meta row */
.vphs-card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-width: 0;
}
.vphs-card-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: .78rem;
  min-width: 0;
  flex-shrink: 0;
}
.vphs-stars {
  color: #f0a500;
  letter-spacing: -.5px;
  line-height: 1;
}
.vphs-card-rating-val {
  color: #444;
  font-weight: 600;
}
.vphs-card-rating-count {
  color: rgba(17,17,17,.38);
  font-size: .7rem;
}
.vphs-card-sold {
  font-size: .7rem;
  font-weight: 600;
  color: rgba(17,17,17,.45);
  white-space: nowrap;
  text-align: right;
}

/* Shop page — rating row with sold count */
.vp-shop-rating--meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.vp-shop-rating-inner {
  display: flex;
  align-items: center;
  gap: 3px;
}
.vp-product-sold-count {
  font-size: 11px;
  font-weight: 600;
  color: rgba(17,17,17,.44);
  white-space: nowrap;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 600px) {
  /* Reduce opacity of botanicals on small screens */
  #vp-home-showcase::before { opacity: .05; width: 160px; height: 200px; }
  #vp-home-showcase::after  { opacity: .05; width: 120px; height: 220px; }
  /* Stack action buttons vertically if cards are very narrow */
  .vphs-card-actions { grid-template-columns: 1fr; gap: 6px; }
  .vphs-card-actions .vphs-card-btn--disabled { grid-column: 1; }
}
@media (min-width: 601px) and (max-width: 900px) {
  /* 2-col grid — cards are ~half viewport; keep 2 buttons side-by-side */
  .vphs-card-actions .vphs-card-btn { font-size: .72rem; padding: 7px 4px; }
}

/* ── VIETPOT_POPUP_MULTISLIDE_2026 ───────────────────────────────────────── */

/* Slide track */
.vp-popup-slides {
  position: relative;
  overflow: hidden;
  min-height: 180px;
}
.vp-popup-slide {
  display: none;
}
.vp-popup-slide.is-active {
  display: block;
  animation: vp-slide-fade .38s ease both;
}
@keyframes vp-slide-fade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Dot indicators */
.vp-popup-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 4px;
}
.vp-popup-dot {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(45, 90, 39, .22);
  border-radius: 100px;
  height: 6px;
  width: 8px;
  transition: width .28s ease, background .28s ease;
}
.vp-popup-dot.is-active {
  background: #2d5a27;
  width: 22px;
}
.vp-popup-dot:focus-visible {
  outline: 2px solid #2d5a27;
  outline-offset: 2px;
}

/* Combo slide accent */
.vp-coupon-code-badge--combo {
  background: #1b4d3e;
}
.vp-popup-cta--combo {
  background: linear-gradient(135deg, #1b6f49 0%, #2d5a27 100%);
}

/* ── VIETPOT_SHOWCASE_HEADER_BOTANICAL_2026 ──────────────────────────────── */

/* Make header positioning context for leaf pseudo-elements */
.vphs-header {
  position: relative;
  overflow: visible;
}

/* Left botanical leaf */
.vphs-header::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  width: 130px;
  height: 165px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 130 165' fill='none'%3E%3Cpath d='M65 155 C20 130 5 90 10 50 C15 20 40 5 65 10 C90 5 115 20 120 50 C125 90 110 130 65 155Z' fill='%232d5a27' opacity='.18'/%3E%3Cline x1='65' y1='155' x2='65' y2='10' stroke='%232d5a27' stroke-width='1.5' opacity='.22'/%3E%3Cline x1='65' y1='100' x2='30' y2='70' stroke='%232d5a27' stroke-width='1' opacity='.18'/%3E%3Cline x1='65' y1='85' x2='100' y2='60' stroke='%232d5a27' stroke-width='1' opacity='.18'/%3E%3Cline x1='65' y1='120' x2='25' y2='95' stroke='%232d5a27' stroke-width='1' opacity='.15'/%3E%3Cline x1='65' y1='115' x2='105' y2='88' stroke='%232d5a27' stroke-width='1' opacity='.15'/%3E%3C/svg%3E") no-repeat center/contain;
  opacity: .12;
  pointer-events: none;
}

/* Right botanical leaf — mirrored */
.vphs-header::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%) scaleX(-1);
  width: 110px;
  height: 145px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 110 145' fill='none'%3E%3Cpath d='M55 135 C18 112 5 75 9 42 C13 16 34 4 55 8 C76 4 97 16 101 42 C105 75 92 112 55 135Z' fill='%232d5a27' opacity='.18'/%3E%3Cline x1='55' y1='135' x2='55' y2='8' stroke='%232d5a27' stroke-width='1.5' opacity='.22'/%3E%3Cline x1='55' y1='88' x2='24' y2='62' stroke='%232d5a27' stroke-width='1' opacity='.18'/%3E%3Cline x1='55' y1='74' x2='86' y2='52' stroke='%232d5a27' stroke-width='1' opacity='.18'/%3E%3Cline x1='55' y1='105' x2='20' y2='82' stroke='%232d5a27' stroke-width='1' opacity='.15'/%3E%3C/svg%3E") no-repeat center/contain;
  opacity: .10;
  pointer-events: none;
}

/* Hide header leaves on mobile — not enough horizontal space */
@media (max-width: 700px) {
  .vphs-header::before,
  .vphs-header::after { display: none; }
}

/* Tablet — reduce size and opacity slightly */
@media (min-width: 701px) and (max-width: 1100px) {
  .vphs-header::before { width: 90px; height: 115px; opacity: .09; }
  .vphs-header::after  { width: 76px; height: 100px; opacity: .07; }
}

/* ════════════════════════════════════════════════════════════════════════════
   VIETPOT_MOBILE_UX_OPTIMIZATION_2026
   Tối ưu trải nghiệm mobile: hamburger, floating buttons, BSC carousel,
   why/space sections, chatbot panel. Không ảnh hưởng desktop (>768px).
   Breakpoints chính: ≤767px | ≤619px | ≤479px
   ════════════════════════════════════════════════════════════════════════════ */

/* ── 1. Floating social: restore Facebook + Messenger on small phones ──────
   Existing rule at max-width:479px hides .vp-sf-facebook and .vp-sf-messenger.
   Most iPhones (375–430px) fall in this range → only Zalo visible. Fix below. */
@media (max-width: 479px) {
  .vp-sf-facebook,
  .vp-sf-messenger {
    display: flex !important;
  }
  .vp-social-float {
    bottom: 88px;
    right: 12px;
    gap: 7px;
  }
  .vp-sf-btn {
    width: 46px !important;
    height: 46px !important;
  }
  .vp-sf-btn svg {
    width: 20px !important;
    height: 20px !important;
  }
}

/* ── 2. BSC Carousel: 3 compact vertical cards on mobile ───────────────────
   At ≤620px the existing rules switch to flex-direction:row (horizontal card).
   At ≤619px we override back to vertical so 3 cards fit side-by-side. */
@media (max-width: 619px) {

  /* Give carousel slightly more horizontal room */
  .vp-bsc-section.vp-shell-padded {
    margin-inline: 6px;
  }

  /* Hide prev/next nav arrows — swipe handles navigation on touch */
  .vp-bsc-nav {
    display: none !important;
  }

  /* Override the ≤620px row layout — revert to column */
  .vp-bsc-track .vp-bs-card {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  /* Compact square image */
  .vp-bsc-track .vp-bs-media {
    width: auto !important;
    margin: 6px 6px 0 !important;
    aspect-ratio: 1 !important;
    border-radius: 10px !important;
    flex-shrink: unset !important;
  }

  /* Compact info area */
  .vp-bsc-track .vp-bs-info {
    gap: 3px !important;
    padding: 5px 8px 8px !important;
    justify-content: flex-start !important;
  }

  /* Category label */
  .vp-bsc-track .vp-bs-cat {
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  /* Product title — 2 lines max */
  .vp-bsc-track .vp-bs-info h3 {
    font-size: 11px !important;
    line-height: 1.3;
    -webkit-line-clamp: 2;
    margin: 0 0 2px;
  }

  /* Sales badge */
  .vp-bsc-track .vp-bs-sales {
    padding: 3px 7px !important;
    font-size: 9px !important;
  }
  .vp-bsc-track .vp-bs-sales strong {
    font-size: 10px !important;
  }

  /* Price */
  .vp-bsc-track .vp-bs-info strong {
    font-size: 12px !important;
  }

  /* Hide CTA link and decorative top-header to save vertical space */
  .vp-bsc-track .vp-bs-cta { display: none !important; }
  .vp-bsc-track .vp-bs-top-header { display: none !important; }
  .vp-bsc-track .vp-bs-top-label { display: none !important; }

  /* Rank badge — smaller */
  .vp-bsc-track .vp-bs-rank {
    font-size: 13px;
    width: 22px;
    height: 22px;
    top: 5px;
    left: 5px;
  }

  /* Card border-radius */
  .vp-bsc-track .vp-bs-card {
    border-radius: 14px;
  }
}

/* ── 3. "Gợi ý xanh" Space Grid: 2-column on phone ────────────────────────
   Existing ≤620px rule sets grid-template-columns:1fr (6 tall cards stacked).
   Override to 2×3 grid with compact aspect-ratio cards. */
@media (max-width: 619px) {
  .vp-space-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .vp-space-card {
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 16px !important;
  }

  /* Compact label at bottom of card */
  .vp-space-label {
    left: 8px !important;
    right: 8px !important;
    bottom: 8px !important;
    padding: 7px 8px 7px 10px !important;
    border-radius: 10px !important;
    gap: 6px !important;
  }

  .vp-space-name {
    font-size: 12px !important;
    line-height: 1.2;
  }

  /* Force large/wide cards to normal span */
  .vp-space-large,
  .vp-space-wide {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

/* ── 4. "Thiết kế để cây xanh" Why Section: 2-column on phone ──────────────
   Existing ≤620px rule sets 1-column + min-height:330px → 4 cards × 330px = 1320px.
   Override to 2×2 grid with 200px minimum card height. */
@media (max-width: 619px) {
  .vp-why-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .vp-why-card {
    min-height: 200px !important;
    border-radius: 18px !important;
    grid-column: auto !important;
  }

  /* Compact glass copy overlay */
  .vp-why-card-copy {
    left: 8px !important;
    right: 8px !important;
    bottom: 8px !important;
    padding: 8px 10px !important;
    gap: 8px !important;
    min-height: 0 !important;
    border-radius: 14px !important;
  }

  .vp-why-card h3 {
    font-size: 12px !important;
    line-height: 1.2;
    -webkit-line-clamp: 2;
  }

  /* Hide description text — no room at 2-column compact */
  .vp-why-card p {
    display: none !important;
  }

  /* Smaller icon */
  .vp-why-card-icon {
    width: 30px !important;
    height: 30px !important;
    border-radius: 8px !important;
  }
  .vp-why-card-icon svg {
    width: 15px !important;
    height: 15px !important;
  }

  /* Why section padding and heading */
  .vp-why-section {
    padding: 24px 14px !important;
  }

  .vp-why-heading h2 {
    font-size: clamp(24px, 7vw, 32px) !important;
  }

  .vp-why-heading p {
    font-size: 13px !important;
  }

  /* Commitments: 2-column on phone */
  .vp-why-commitments {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 18px !important;
  }

  .vp-why-commitment {
    padding: 12px 14px !important;
    border-radius: 14px !important;
  }

  .vp-why-commitment strong {
    font-size: 20px !important;
  }

  .vp-why-commitment span {
    font-size: 11px !important;
  }
}

/* ── 5. Chatbot panel: fix max-height cut-off on mobile Safari ─────────────
   calc(100vh - 120px) on a 667px Safari → panel top = 667-120-720+120 = 16px,
   behind the 56px fixed header. Use 100dvh + larger offset. */
@media (max-width: 619px) {
  .chatbot-window {
    width: min(370px, calc(100vw - 24px));
    max-height: min(520px, calc(100vh - 180px));
    max-height: min(520px, calc(100dvh - 180px));
  }

  /* Chatbot bubble: respect iPhone home bar */
  .chatbot-bubble {
    bottom: max(20px, env(safe-area-inset-bottom, 20px)) !important;
    right: 16px !important;
  }
}

/* Safe-area bottom for chat placeholder on notched iPhones */
@media (max-width: 767px) {
  #vp-chat-placeholder {
    bottom: max(20px, calc(env(safe-area-inset-bottom, 0px) + 12px)) !important;
  }
}

/* =========================================================
   VIETPOT MOBILE LAYOUT REDESIGN 2026
   Scope: Mobile only - does not affect desktop
   Target: max-width 768px
========================================================= */

@media (max-width: 768px) {

  /* ---------- Global mobile scale ---------- */

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 14px;
  }

  .site,
  .site-content,
  .vp-page,
  .vp-home,
  main {
    overflow-x: hidden;
  }

  section {
    scroll-margin-top: 84px;
  }

  /* ---------- Mobile header ---------- */

  .vp-header,
  .site-header,
  .vp-main-header {
    position: sticky;
    top: 10px;
    z-index: 999;
    width: calc(100% - 20px);
    margin: 10px auto 0;
    border-radius: 999px;
    background: rgba(255, 252, 245, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 26px rgba(20, 40, 28, 0.12);
    border: 1px solid rgba(36, 86, 60, 0.12);
  }

  .vp-header-inner,
  .site-header .container,
  .vp-nav-inner,
  .vp-main-header__inner {
    min-height: 54px;
    height: 54px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
  }

  .vp-logo,
  .custom-logo-link,
  .site-branding {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    min-width: 0;
  }

  .vp-logo img,
  .custom-logo,
  .site-branding img {
    width: 42px;
    height: 42px;
    object-fit: contain;
  }

  .site-title,
  .vp-brand-text,
  .vp-logo-text {
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  /* Hide desktop nav on mobile */
  .vp-desktop-nav,
  .main-navigation,
  .primary-menu,
  .vp-nav-menu {
    display: none !important;
  }

  /* Mobile menu button */
  .vp-mobile-menu-toggle,
  .vp-mobile-toggle,
  .menu-toggle {
    display: inline-flex !important;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(31, 79, 55, 0.12);
    background: rgba(255, 255, 255, 0.58);
    color: #173f2d;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
  }

  .vp-mobile-menu-toggle::before,
  .vp-mobile-toggle::before,
  .menu-toggle::before {
    content: "☰";
    font-size: 18px;
    font-weight: 700;
  }

  /* Header action icons */
  .vp-header-actions,
  .vp-nav-actions,
  .header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
  }

  .vp-header-actions a,
  .vp-header-actions button,
  .vp-nav-actions a,
  .vp-nav-actions button,
  .header-actions a,
  .header-actions button {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  /* ---------- Mobile menu panel ---------- */

  .vp-mobile-menu-panel {
    position: fixed;
    top: 74px;
    left: 12px;
    right: 12px;
    z-index: 1001;
    display: none;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 253, 247, 0.96);
    box-shadow: 0 18px 50px rgba(20, 40, 28, 0.18);
    border: 1px solid rgba(34, 92, 62, 0.12);
  }

  body.vp-mobile-menu-open .vp-mobile-menu-panel {
    display: block;
  }

  .vp-mobile-menu-panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 16px;
    color: #173f2d;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid rgba(34, 92, 62, 0.06);
  }

  .vp-mobile-menu-panel a::after {
    content: "→";
    opacity: 0.55;
  }

  .vp-mobile-menu-panel a:hover,
  .vp-mobile-menu-panel a:focus {
    background: rgba(29, 116, 75, 0.08);
  }

  .vp-mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    background: rgba(0, 0, 0, 0.22);
  }

  body.vp-mobile-menu-open .vp-mobile-menu-overlay {
    display: block;
  }

  /* ---------- Hero mobile: reduce oversized layout ---------- */

  .vp-hero,
  .hero,
  .home-hero,
  .vp-home-hero {
    min-height: auto !important;
    height: auto !important;
    padding: 84px 20px 30px !important;
    border-radius: 0 0 28px 28px;
    overflow: hidden;
  }

  .vp-hero__content,
  .hero-content,
  .home-hero__content,
  .vp-home-hero__content {
    max-width: 100%;
    padding: 0;
    position: relative;
    z-index: 2;
  }

  .vp-hero__eyebrow,
  .hero-eyebrow,
  .home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    background: rgba(255, 255, 255, 0.54);
    color: #1e5b3e;
    margin-bottom: 16px;
  }

  .vp-hero h1,
  .hero h1,
  .home-hero h1,
  .vp-home-hero h1 {
    max-width: 86%;
    font-size: clamp(42px, 13vw, 58px) !important;
    line-height: 0.96 !important;
    letter-spacing: -0.05em;
    margin: 0 0 16px !important;
  }

  .vp-hero p,
  .hero p,
  .home-hero p,
  .vp-home-hero p {
    max-width: 88%;
    font-size: 15px !important;
    line-height: 1.55 !important;
    margin-bottom: 18px !important;
  }

  .vp-hero__actions,
  .hero-actions,
  .home-hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 100%;
  }

  .vp-hero__actions a,
  .hero-actions a,
  .home-hero__actions a,
  .vp-hero__actions button,
  .hero-actions button,
  .home-hero__actions button {
    min-height: 48px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    padding: 0 12px;
  }

  /* Hero image should not dominate whole screen */
  .vp-hero img,
  .hero img,
  .home-hero img,
  .vp-home-hero img {
    object-fit: cover;
  }

  /* ---------- Trust / policy cards under hero ---------- */

  .vp-trust-row,
  .trust-row,
  .home-policy-row,
  .vp-home-policy {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: -10px 20px 28px;
    padding: 14px 8px;
    border-radius: 22px;
    background: rgba(255, 253, 247, 0.94);
    box-shadow: 0 12px 32px rgba(20, 40, 28, 0.10);
  }

  .vp-trust-item,
  .trust-item,
  .home-policy-item,
  .vp-home-policy__item {
    min-width: 0;
    padding: 0 8px;
    text-align: center;
    border-right: 1px solid rgba(35, 82, 58, 0.10);
  }

  .vp-trust-item:last-child,
  .trust-item:last-child,
  .home-policy-item:last-child,
  .vp-home-policy__item:last-child {
    border-right: 0;
  }

  .vp-trust-item h3,
  .trust-item h3,
  .home-policy-item h3,
  .vp-home-policy__item h3 {
    font-size: 11px !important;
    line-height: 1.25;
    margin: 6px 0 2px;
  }

  .vp-trust-item p,
  .trust-item p,
  .home-policy-item p,
  .vp-home-policy__item p {
    font-size: 10px !important;
    line-height: 1.35;
    margin: 0;
  }

  .vp-trust-item svg,
  .trust-item svg,
  .home-policy-item svg,
  .vp-home-policy__item svg {
    width: 26px;
    height: 26px;
  }

  /* ---------- Section general spacing ---------- */

  .vp-section,
  .home-section,
  .vp-home-section {
    padding: 34px 20px !important;
  }

  .vp-section-header,
  .home-section-header,
  .vp-home-section__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
  }

  .vp-section-header h2,
  .home-section-header h2,
  .vp-home-section__header h2 {
    font-size: clamp(24px, 7vw, 32px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.04em;
    margin: 0;
  }

  .vp-section-header p,
  .home-section-header p,
  .vp-home-section__header p {
    font-size: 13px !important;
    line-height: 1.45;
    margin: 6px 0 0;
  }

  .vp-section-header a,
  .home-section-header a,
  .vp-home-section__header a {
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 800;
    color: #174a33;
    text-decoration: none;
  }

  /* ---------- Best seller: show compact 3 cards ---------- */

  .vp-bestseller,
  .best-seller,
  .home-bestseller,
  .vp-home-bestseller {
    padding: 34px 14px !important;
  }

  .vp-bestseller-track,
  .best-seller-track,
  .vp-bestseller-grid,
  .home-bestseller-grid,
  .vp-home-bestseller__grid {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: calc((100% - 20px) / 3) !important;
    grid-template-columns: none !important;
    gap: 10px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 2px 6px 12px !important;
  }

  .vp-bestseller-track::-webkit-scrollbar,
  .best-seller-track::-webkit-scrollbar,
  .vp-bestseller-grid::-webkit-scrollbar,
  .home-bestseller-grid::-webkit-scrollbar,
  .vp-home-bestseller__grid::-webkit-scrollbar {
    display: none;
  }

  .vp-bestseller-card,
  .best-seller-card,
  .home-bestseller-card,
  .vp-product-card,
  .vp-home-bestseller__card {
    scroll-snap-align: start;
    min-width: 0;
    border-radius: 16px !important;
    padding: 7px !important;
    background: #fffdf7;
    box-shadow: 0 8px 22px rgba(20, 40, 28, 0.08);
  }

  .vp-bestseller-card img,
  .best-seller-card img,
  .home-bestseller-card img,
  .vp-home-bestseller__card img,
  .vp-product-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto !important;
    object-fit: cover;
    border-radius: 12px !important;
  }

  .vp-bestseller-card h3,
  .best-seller-card h3,
  .home-bestseller-card h3,
  .vp-home-bestseller__card h3,
  .vp-product-card h3 {
    font-size: 10.5px !important;
    line-height: 1.25 !important;
    min-height: 26px;
    margin: 7px 0 4px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .vp-bestseller-card .price,
  .best-seller-card .price,
  .home-bestseller-card .price,
  .vp-home-bestseller__card .price,
  .vp-product-card .price {
    font-size: 11px !important;
    font-weight: 800;
    margin: 4px 0 !important;
  }

  .vp-bestseller-card .rating,
  .best-seller-card .rating,
  .home-bestseller-card .rating,
  .vp-product-rating {
    font-size: 9.5px !important;
  }

  .vp-bestseller-card .button,
  .best-seller-card .button,
  .home-bestseller-card .button,
  .vp-home-bestseller__card .button,
  .vp-product-card .button,
  .vp-product-card a.button {
    min-height: 30px !important;
    height: 30px !important;
    padding: 0 6px !important;
    border-radius: 999px !important;
    font-size: 9.5px !important;
    line-height: 30px !important;
    white-space: nowrap;
  }

  .vp-bestseller-card .product-meta,
  .best-seller-card .product-meta,
  .home-bestseller-card .product-meta {
    display: none !important;
  }

  /* ---------- Category circles compact ---------- */

  .vp-category-strip,
  .home-category-strip,
  .vp-home-categories {
    display: grid !important;
    grid-auto-flow: column;
    grid-auto-columns: 74px;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 4px 10px;
    scroll-snap-type: x mandatory;
  }

  .vp-category-strip::-webkit-scrollbar,
  .home-category-strip::-webkit-scrollbar,
  .vp-home-categories::-webkit-scrollbar {
    display: none;
  }

  .vp-category-item,
  .home-category-item,
  .vp-home-category {
    scroll-snap-align: start;
    text-align: center;
  }

  .vp-category-item img,
  .home-category-item img,
  .vp-home-category img {
    width: 62px;
    height: 62px;
    border-radius: 999px;
    object-fit: cover;
  }

  .vp-category-item span,
  .home-category-item span,
  .vp-home-category span {
    display: block;
    margin-top: 6px;
    font-size: 10.5px;
    line-height: 1.2;
    font-weight: 700;
  }

  /* ---------- Value section: compact 2-column cards ---------- */

  .vp-value-section,
  .value-section,
  .vp-why-section,
  .why-section,
  .vp-home-why {
    padding: 36px 20px !important;
  }

  .vp-value-grid,
  .value-grid,
  .why-grid,
  .vp-why-grid,
  .vp-home-why__grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .vp-value-card,
  .value-card,
  .why-card,
  .vp-why-card,
  .vp-home-why__card {
    min-height: 168px !important;
    height: auto !important;
    padding: 14px !important;
    border-radius: 18px !important;
    overflow: hidden;
  }

  .vp-value-card h3,
  .value-card h3,
  .why-card h3,
  .vp-why-card h3,
  .vp-home-why__card h3 {
    font-size: 13px !important;
    line-height: 1.2 !important;
    margin: 8px 0 4px !important;
  }

  .vp-value-card p,
  .value-card p,
  .why-card p,
  .vp-why-card p,
  .vp-home-why__card p {
    font-size: 11px !important;
    line-height: 1.35 !important;
    margin: 0 !important;
  }

  .vp-value-card img,
  .value-card img,
  .why-card img,
  .vp-why-card img,
  .vp-home-why__card img {
    width: 100%;
    max-height: 88px;
    object-fit: cover;
    border-radius: 14px;
    margin-top: 8px;
  }

  .vp-value-card svg,
  .value-card svg,
  .why-card svg,
  .vp-why-card svg,
  .vp-home-why__card svg {
    width: 28px;
    height: 28px;
  }

  /* ---------- Space suggestions: 2-column compact ---------- */

  .vp-space-section,
  .space-section,
  .vp-home-space,
  .vp-green-space {
    padding: 36px 20px !important;
  }

  .vp-space-grid,
  .space-grid,
  .vp-home-space__grid,
  .green-space-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .vp-space-card,
  .space-card,
  .vp-home-space__card,
  .green-space-card {
    border-radius: 18px !important;
    overflow: hidden;
    min-height: auto !important;
    box-shadow: 0 8px 22px rgba(20, 40, 28, 0.08);
  }

  .vp-space-card img,
  .space-card img,
  .vp-home-space__card img,
  .green-space-card img {
    width: 100%;
    aspect-ratio: 1.25 / 1;
    height: auto !important;
    object-fit: cover;
  }

  .vp-space-card__body,
  .space-card__body,
  .vp-home-space__card-body,
  .green-space-card__body {
    padding: 10px !important;
  }

  .vp-space-card h3,
  .space-card h3,
  .vp-home-space__card h3,
  .green-space-card h3 {
    font-size: 12.5px !important;
    line-height: 1.2;
    margin: 0 0 4px !important;
  }

  .vp-space-card p,
  .space-card p,
  .vp-home-space__card p,
  .green-space-card p {
    font-size: 10.5px !important;
    line-height: 1.3;
    margin: 0 !important;
  }

  /* ---------- Category showcase product section ---------- */

  .vp-home-category-showcase {
    padding: 40px 14px !important;
  }

  .vp-home-category-showcase__title {
    font-size: clamp(30px, 9vw, 40px) !important;
    line-height: 1.05 !important;
  }

  .vp-home-category-showcase__desc {
    font-size: 14px !important;
  }

  .vp-home-category-showcase__toolbar,
  .vp-category-showcase-toolbar {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .vp-home-category-showcase__filters,
  .vp-category-showcase-filters {
    display: grid !important;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .vp-home-category-showcase__filters::-webkit-scrollbar,
  .vp-category-showcase-filters::-webkit-scrollbar {
    display: none;
  }

  .vp-home-category-row__head {
    display: grid !important;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
  }

  .vp-home-category-row__title {
    font-size: 22px !important;
    line-height: 1.12;
  }

  .vp-home-category-row__desc {
    font-size: 12.5px !important;
  }

  .vp-home-category-row__products {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: calc((100% - 20px) / 2.2) !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    gap: 10px !important;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .vp-home-category-row__products::-webkit-scrollbar {
    display: none;
  }

  .vp-home-cat-product-card {
    scroll-snap-align: start;
    border-radius: 18px !important;
  }

  .vp-home-cat-product-card__image {
    aspect-ratio: 1 / 1 !important;
  }

  .vp-home-cat-product-card__title {
    font-size: 12px !important;
    line-height: 1.28 !important;
  }

  .vp-home-cat-product-card__actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }

  .vp-home-cat-product-card__btn {
    min-height: 34px !important;
    font-size: 10.5px !important;
  }

  /* ---------- Floating support buttons ---------- */

  .vp-floating-buttons,
  .floating-buttons,
  .social-floating,
  .vp-social-floating {
    position: fixed !important;
    right: 14px !important;
    bottom: 86px !important;
    z-index: 950 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .vp-floating-buttons a,
  .vp-floating-buttons button,
  .floating-buttons a,
  .floating-buttons button,
  .social-floating a,
  .social-floating button,
  .vp-social-floating a,
  .vp-social-floating button {
    display: inline-flex !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    border-radius: 999px !important;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .vp-floating-facebook,
  .vp-floating-messenger,
  .floating-facebook,
  .floating-messenger,
  .facebook-floating,
  .messenger-floating {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* ---------- Chatbot mobile panel ---------- */

  .vp-chatbot-panel,
  .chatbot-panel,
  .vietpot-chatbot,
  .vp-ai-chatbot,
  .vp-chat-widget {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    top: max(12px, env(safe-area-inset-top)) !important;
    bottom: max(12px, env(safe-area-inset-bottom)) !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    max-height: calc(100dvh - 24px) !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    z-index: 1200 !important;
  }

  .vp-chatbot-header,
  .chatbot-header,
  .vp-ai-chatbot__header {
    min-height: 54px !important;
    padding: 10px 14px !important;
  }

  .vp-chatbot-body,
  .chatbot-body,
  .vp-ai-chatbot__body {
    overflow-y: auto !important;
    max-height: calc(100dvh - 160px) !important;
  }

  .vp-chatbot-input,
  .chatbot-input,
  .vp-ai-chatbot__input {
    padding-bottom: max(12px, env(safe-area-inset-bottom)) !important;
  }

  /* ---------- Forms / inputs mobile ---------- */

  input,
  select,
  textarea {
    max-width: 100%;
    font-size: 16px;
  }

  .woocommerce input,
  .woocommerce select,
  .woocommerce textarea {
    font-size: 16px !important;
  }

  /* ---------- Prevent horizontal overflow common causes ---------- */

  img,
  video,
  iframe {
    max-width: 100%;
  }

  .elementor-section,
  .elementor-container,
  .wp-block-group,
  .wp-block-columns {
    max-width: 100%;
    overflow-x: hidden;
  }
}

/* Extra compact phones */
@media (max-width: 390px) {

  .vp-hero h1,
  .hero h1,
  .home-hero h1,
  .vp-home-hero h1 {
    font-size: clamp(38px, 12vw, 50px) !important;
    max-width: 92%;
  }

  .vp-hero p,
  .hero p,
  .home-hero p,
  .vp-home-hero p {
    max-width: 92%;
    font-size: 14px !important;
  }

  .vp-bestseller-track,
  .best-seller-track,
  .vp-bestseller-grid,
  .home-bestseller-grid,
  .vp-home-bestseller__grid {
    grid-auto-columns: calc((100% - 16px) / 2.6) !important;
  }

  .vp-value-grid,
  .value-grid,
  .why-grid,
  .vp-why-grid,
  .vp-home-why__grid,
  .vp-space-grid,
  .space-grid,
  .vp-home-space__grid,
  .green-space-grid {
    gap: 10px !important;
  }

  .vp-value-card,
  .value-card,
  .why-card,
  .vp-why-card,
  .vp-home-why__card {
    min-height: 154px !important;
    padding: 12px !important;
  }

  .vp-floating-buttons,
  .floating-buttons,
  .social-floating,
  .vp-social-floating {
    right: 10px !important;
    bottom: 78px !important;
  }

  .vp-floating-buttons a,
  .vp-floating-buttons button,
  .floating-buttons a,
  .floating-buttons button,
  .social-floating a,
  .social-floating button,
  .vp-social-floating a,
  .vp-social-floating button {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════════
   VIETPOT_VISUAL_UX_FIX_PHASE_2026
   Visual polish: text contrast, hero legibility, CTA styling, shop hero,
   category cards, search form, mobile filter toggle.
   Selectors audited from: front-page.php, page-shop.php, header.php, vietpot.css.
   ════════════════════════════════════════════════════════════════════════════ */

/* ── 1. Homepage hero H1 + description: add text-shadow for legibility ─────
   .vp-hero-content already has color:white — shadow adds depth on dark image */
.vp-hero-content h1 {
  color: #fffaf0 !important;
  text-shadow:
    0 4px 22px rgba(0, 0, 0, 0.34),
    0 1px 3px rgba(0, 0, 0, 0.22) !important;
}

.vp-hero-content p {
  color: rgba(255, 255, 255, 0.92) !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28) !important;
}

.vp-hero-kicker {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.22);
}

/* ── 2. Category overlay cards: h3 text-shadow ──────────────────────────────
   Cards (.vp-category-overlay-card) already have color:white + dark shade overlay.
   Add text-shadow for extra pop. */
.vp-category-overlay-card h3 {
  color: white !important;
  text-shadow:
    0 3px 14px rgba(0, 0, 0, 0.38),
    0 1px 2px rgba(0, 0, 0, 0.24) !important;
}

.vp-category-overlay-card p {
  color: rgba(255, 255, 255, 0.88) !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.28);
}

/* ── 3. Why section card text: explicit white + shadow to override Storefront ─
   .vp-why-card-copy already has color:white on the glass overlay, but
   Storefront global h3 rules may override. Force here scoped to section. */
.vp-why-section .vp-why-card h3 {
  color: white !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.22) !important;
}

.vp-why-section .vp-why-card p {
  color: rgba(255, 255, 255, 0.82) !important;
}

.vp-why-section .vp-why-card-copy {
  color: white !important;
}

/* ── 4. Shop hero text: stronger text-shadow — ::before adds white wash overlay
   so text must cut through the frosted look visually. */
.vp-shop-hero h1,
body.vp-is-shop .vp-shop-hero h1 {
  color: #fffaf0 !important;
  text-shadow:
    0 6px 28px rgba(0, 0, 0, 0.32),
    0 2px 6px rgba(0, 0, 0, 0.22) !important;
}

.vp-shop-hero p:not(.vp-section-kicker),
body.vp-is-shop .vp-shop-hero p:not(.vp-section-kicker) {
  color: rgba(255, 255, 255, 0.94) !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28) !important;
}

.vp-shop-hero .vp-section-kicker,
body.vp-is-shop .vp-shop-hero .vp-section-kicker {
  color: rgba(255, 255, 255, 0.92) !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

/* Reduce the white wash on shop hero so bg image shows through more clearly */
.vp-shop-hero::before {
  background: linear-gradient(
    180deg,
    rgba(10, 28, 20, 0.18) 0%,
    rgba(10, 28, 20, 0.44) 100%
  ) !important;
  backdrop-filter: none !important;
}

/* ── 5. Hero CTA buttons — enhanced styling ──────────────────────────────────
   "Mua ngay" (vp-pill-btn-light) + "Tư vấn với AI" (vp-pill-btn-outline-light vp-pill-btn-ai) */
.vp-hero-actions .vp-pill-btn {
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.22),
    0 2px 6px rgba(0, 0, 0, 0.14) !important;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease !important;
}

.vp-hero-actions .vp-pill-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.28),
    0 3px 10px rgba(0, 0, 0, 0.18) !important;
}

.vp-hero-actions .vp-pill-btn-light {
  background: #f0ebe0 !important;
  color: #0d2318 !important;
  font-weight: 800 !important;
}

.vp-hero-actions .vp-pill-btn-light:hover {
  background: #fff !important;
}

/* "Tư vấn với AI" — frosted glass with subtle glow */
.vp-hero-actions .vp-pill-btn-ai {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.58) !important;
  color: white !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.vp-hero-actions .vp-pill-btn-ai:hover {
  background: rgba(255, 255, 255, 0.24) !important;
  border-color: rgba(255, 255, 255, 0.75) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28),
    0 14px 36px rgba(0, 0, 0, 0.28) !important;
}

/* ── 6. Search bar: custom form button styling ────────────────────────────── */
.vp-search-bar-inner .search-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: none;
  border-radius: 12px;
  background: #1b6f49;
  color: white;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.vp-search-bar-inner .search-submit:hover {
  background: #14543a;
}

/* ── 7. Mobile filter toggle button ──────────────────────────────────────── */
.vp-mobile-filter-btn {
  display: none; /* hidden on desktop, shown via mobile override */
}

@media (max-width: 980px) {
  .vp-mobile-filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    margin: 16px 0 0;
    border: 1.5px solid rgba(27, 111, 73, 0.22);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    color: #1b3a2b;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
  }

  .vp-mobile-filter-btn:hover,
  .vp-mobile-filter-btn.is-open {
    background: #fff;
    border-color: #1b6f49;
    color: #1b6f49;
  }

  .vp-mobile-filter-label { flex: 1; text-align: left; }

  .vp-mobile-filter-count {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #1b6f49;
    color: white;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .vp-mobile-filter-chevron {
    transition: transform 0.2s ease;
    flex-shrink: 0;
  }

  .vp-mobile-filter-btn.is-open .vp-mobile-filter-chevron {
    transform: rotate(180deg);
  }

  /* Sidebar collapsed by default on tablet/mobile */
  .vp-shop-sidebar {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  /* Open state */
  .vp-shop-sidebar.vp-sidebar-open {
    max-height: 1200px;
    overflow-y: auto;
    padding: 22px;
    border: 1px solid rgba(27, 111, 73, 0.12);
    border-radius: 20px;
    margin-bottom: 16px;
  }
}

@media (min-width: 981px) {
  /* On desktop sidebar always visible — ensure toggle button hidden */
  .vp-mobile-filter-btn {
    display: none !important;
  }

  /* Ensure sidebar not collapsed on desktop */
  .vp-shop-sidebar {
    max-height: none !important;
    overflow: visible !important;
    padding: 22px !important;
  }
}