/* ============================================================
   PROFESSIONAL LAYOUT — Docked chat panel on right (no phone frame)
   ============================================================ */
:root {
  --wa-green: #075E54;
  --wa-green-light: #128C7E;
  --wa-green-accent: #25D366;
  --wa-bubble-out: #DCF8C6;
  --wa-bubble-in: #FFFFFF;
  --wa-wallpaper: #ECE5DD;
  --wa-header-text: #FFFFFF;
  --wa-tick-blue: #34B7F1;
  --chat-dock-width: 400px;
  --chat-dock-gap: 20px;
}

/* Reserve right side for docked chat ONLY when chat is open on wide screens */
@media (min-width: 1280px) {
  body.chat-docked { padding-right: calc(var(--chat-dock-width) + var(--chat-dock-gap) * 2); }
  body.chat-docked .site-header { padding-right: 0; }
  /* Smooth resize when chat opens/closes */
  body { transition: padding-right .25s ease; }
}

/* ============================================================
   PROFESSIONAL HEADER (right-aligned menu)
   ============================================================ */
.site-header {
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid rgba(20,20,20,0.06);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', 'Inter', sans-serif; font-weight: 800;
  font-size: 1rem; color: #1a1a1a; text-decoration: none;
  letter-spacing: -0.01em;
}
.brand-dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #A6202B, #7c1620);
  color: #fff; font-size: 12px;
}
.nav-right {
  display: flex; align-items: center; gap: 4px;
  font-family: 'Inter', sans-serif;
}
.nav-right .nav-link {
  padding: 8px 14px; border-radius: 999px;
  color: #3a3a3a; font-weight: 500; font-size: 0.9rem;
  text-decoration: none; transition: background .18s, color .18s;
}
.nav-right .nav-link:hover { background: rgba(20,20,20,0.06); color: #0f0f0f; }

.nav-cart {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; margin-left: 4px; border-radius: 999px;
  color: #3a3a3a; font-weight: 500; font-size: 0.85rem;
  text-decoration: none; transition: background .18s;
  position: relative;
}
.nav-cart:hover { background: rgba(20,20,20,0.06); }
.nav-cart-count {
  position: absolute; top: -2px; right: -2px;
  background: #A6202B; color: #fff;
  border-radius: 999px; font-size: 10px; font-weight: 700;
  padding: 2px 6px; min-width: 18px; text-align: center;
}

.nav-chat-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-left: 6px; padding: 9px 16px; border-radius: 999px;
  background: var(--wa-green-accent); color: #fff;
  border: 0; cursor: pointer;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.88rem;
  box-shadow: 0 4px 14px -4px rgba(37,211,102,0.55);
  transition: transform .12s, box-shadow .12s, background .18s;
}
.nav-chat-btn:hover {
  background: #1FBE5B; transform: translateY(-1px);
  box-shadow: 0 8px 18px -6px rgba(37,211,102,0.7);
}
.nav-chat-btn:active { transform: translateY(0); }
.nav-chat-btn svg { flex: 0 0 auto; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; flex-direction: column;
  justify-content: center; align-items: center; gap: 5px; padding: 0;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #1a1a1a; border-radius: 2px; transition: transform .18s; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-right {
    position: absolute; top: 100%; right: 12px; left: 12px;
    background: #fff; border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px; box-shadow: 0 20px 40px -12px rgba(0,0,0,0.2);
    padding: 10px; flex-direction: column; align-items: stretch;
    display: none;
  }
  .nav-right.is-open { display: flex; }
  .nav-right .nav-link { padding: 12px 14px; }
  .nav-cart { padding: 12px 14px; }
  .nav-chat-btn { margin: 6px 4px 4px; justify-content: center; }
}

/* Hide legacy floating chat launcher */
.dg-chat-btn { display: none !important; }

/* ============================================================
   PRO HERO — compact, professional, trust-stat driven
   ============================================================ */
.pro-hero {
  position: relative;
  padding: 56px 0 32px;
  background:
    radial-gradient(60% 80% at 0% 0%, rgba(166,32,43,0.06) 0%, transparent 60%),
    radial-gradient(50% 70% at 100% 20%, rgba(212,175,55,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #FBF7F1 0%, #F9F4EA 100%);
  border-bottom: 1px solid rgba(20,20,20,0.05);
  /* NOTE: no overflow:hidden — italic descenders were clipping the last 'l' in Digital */
}
.pro-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(closest-side at 30% 30%, #000 50%, transparent 100%);
  opacity: 0.6;
}
.pro-hero-inner {
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.pro-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(20,20,20,0.08);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: 0.02em;
  color: #3a3a3a;
  margin: 0;
}
.pro-hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 3px rgba(37,211,102,0.2);
  animation: proHeroPulse 2.4s ease-in-out infinite;
}
@keyframes proHeroPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(37,211,102,0.15); }
  50% { box-shadow: 0 0 0 6px rgba(37,211,102,0.05); }
}

.pro-hero-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: #171717;
  margin: 4px 0 0;
  max-width: 820px;
}
.pro-hero-accent {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 40%, #25D366 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-style: italic;
  font-weight: 800;
  padding-right: 0.15em;    /* prevent italic slant from being clipped */
  padding-bottom: 0.05em;   /* prevent descender clip */
  display: inline-block;
}
.pro-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem; line-height: 1.55;
  color: #4a4a4a;
  max-width: 620px;
  margin: 4px 0 0;
}

.pro-hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 6px;
}
.btn-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; cursor: pointer;
  border: 0;
  transition: transform .12s ease, box-shadow .18s ease, background .18s ease;
}
.btn-pill-primary {
  background: #171717; color: #fff;
  box-shadow: 0 6px 18px -6px rgba(23,23,23,0.5);
}
.btn-pill-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(23,23,23,0.55);
  background: #0a0a0a;
}
.btn-pill-ghost {
  background: rgba(255,255,255,0.9);
  color: #171717;
  border: 1px solid rgba(20,20,20,0.14);
}
.btn-pill-ghost:hover {
  background: #fff; border-color: rgba(20,20,20,0.28);
  transform: translateY(-1px);
}

.pro-hero-stats {
  display: flex; align-items: center;
  flex-wrap: wrap; gap: 20px;
  padding: 18px 22px; margin-top: 20px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(20,20,20,0.06);
  border-radius: 14px;
  box-shadow: 0 8px 24px -12px rgba(20,20,20,0.08);
}

/* ---------- Hero visual (right-side illustration) ---------- */
.pro-hero-visual {
  position: absolute;
  top: 40px;
  right: 20px;
  width: 340px;
  height: 380px;
  pointer-events: none;
  display: none;
}
@media (min-width: 1120px) {
  .pro-hero-visual { display: block; }
}
.pro-hero-card {
  position: absolute;
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(20,20,20,0.06);
  box-shadow: 0 20px 40px -18px rgba(20,20,20,0.25),
              0 6px 12px -6px rgba(20,20,20,0.1);
  padding: 16px;
  animation: heroFloat 6s ease-in-out infinite;
}
.pro-hero-card-back {
  top: 0; right: 40px;
  width: 200px; height: 130px;
  transform: rotate(-6deg);
  animation-delay: -1s;
}
.pro-hero-card-mid {
  top: 90px; right: 0;
  width: 180px; height: 140px;
  transform: rotate(4deg);
  animation-delay: -3s;
}
.pro-hero-card-front {
  top: 170px; left: 0;
  width: 260px; height: 180px;
  transform: rotate(-2deg);
  animation-delay: -5s;
  padding: 12px;
}
@keyframes heroFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

.pro-card-badge {
  display: inline-block;
  padding: 3px 10px;
  background: linear-gradient(135deg, #075E54, #128C7E);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  border-radius: 999px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.pro-card-badge-red { background: linear-gradient(135deg, #A6202B, #7c1620); }
.pro-card-lines span {
  display: block; height: 8px; border-radius: 3px;
  background: linear-gradient(90deg, #E5E5E5, #F5F5F5);
  margin-bottom: 8px;
}
.pro-card-lines span:nth-child(1) { width: 85%; }
.pro-card-lines span:nth-child(2) { width: 65%; }
.pro-card-lines span:nth-child(3) { width: 45%; }
.pro-card-mock {
  height: 82px; border-radius: 8px;
  background:
    linear-gradient(135deg, #FCE4EC 0%, #FFF3E0 50%, #E8F5E9 100%);
  position: relative; overflow: hidden;
}
.pro-card-mock::before, .pro-card-mock::after {
  content: '';
  position: absolute;
  border-radius: 4px;
}
.pro-card-mock::before {
  top: 12px; left: 12px; width: 40%; height: 6px; background: rgba(0,0,0,0.15);
}
.pro-card-mock::after {
  top: 26px; left: 12px; width: 60%; height: 4px; background: rgba(0,0,0,0.08);
}

.pro-card-chat { display: flex; flex-direction: column; gap: 6px; }
.pro-card-chat-bubble {
  padding: 6px 10px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px; line-height: 1.3;
  max-width: 82%;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.08);
}
.pro-card-chat-you {
  background: #DCF8C6; color: #111;
  align-self: flex-end;
  border-top-right-radius: 2px;
}
.pro-card-chat-us {
  background: #F1F0EA; color: #111;
  align-self: flex-start;
  border-top-left-radius: 2px;
}
.pro-card-chat-typing {
  display: inline-flex; gap: 3px; padding: 8px 12px; align-self: flex-start;
  background: #F1F0EA; border-radius: 10px;
  border-top-left-radius: 2px;
  width: fit-content;
}
.pro-card-chat-typing span {
  width: 5px; height: 5px; border-radius: 50%; background: #666;
  animation: heroTypingDot 1.2s ease-in-out infinite;
}
.pro-card-chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.pro-card-chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes heroTypingDot {
  0%, 60%, 100% { opacity: 0.35; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

.pro-hero-sparkle {
  position: absolute; color: #D4AF37;
  animation: sparkleTwinkle 3s ease-in-out infinite;
}
.pro-hero-sparkle-1 { top: 8px; left: 40px; width: 22px; height: 22px; animation-delay: -0.5s; }
.pro-hero-sparkle-2 { bottom: 24px; right: 20px; width: 16px; height: 16px; color: #25D366; animation-delay: -1.5s; }
@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.9) rotate(0); }
  50% { opacity: 1; transform: scale(1.1) rotate(15deg); }
}

/* Reduce visual on narrower desktop so it doesn't overlap the docked chat */
body.chat-docked .pro-hero-visual { right: 12px; width: 300px; }
.pro-stat {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 92px;
}
.pro-stat-val {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.1rem; font-weight: 800;
  color: #171717; letter-spacing: -0.01em;
  line-height: 1.1;
}
.pro-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500;
  color: #6a6a6a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pro-stat-sep {
  width: 1px; height: 26px;
  background: rgba(20,20,20,0.1);
}
@media (max-width: 640px) {
  .pro-hero { padding: 40px 0 24px; }
  .pro-hero-stats { gap: 12px; padding: 14px; }
  .pro-stat { min-width: 74px; }
  .pro-stat-sep { display: none; }
}

/* Hide old hero if still present anywhere */
.hero, .hero-inner, .hero-inner-solo, .hero-glow { display: none !important; }

/* Legacy hero-right hidden on all pages */
.hero-right, .hero-card { display: none; }

/* Section head refined */
.section-head { padding-top: 8px; padding-bottom: 24px; }

/* Chip refined */
.chip { border-radius: 999px; }

/* ============================================================
   BUNDLE DETAIL PAGE — Redesigned layout
   ============================================================ */
.bundle-page { padding-top: 24px; padding-bottom: 40px; }
.bundle-page > .link-arrow { display: inline-block; margin-bottom: 20px; color: #6a6a6a; font-family: 'Inter', sans-serif; font-size: 13px; text-decoration: none; }
.bundle-page > .link-arrow:hover { color: #171717; }

/* Row 1: image + summary side-by-side, EQUAL height */
.bundle-topgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}
@media (max-width: 900px) {
  .bundle-topgrid { grid-template-columns: 1fr; gap: 20px; }
}

.bundle-cover {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #F5F0E8, #E8E0D4);
  border: 1px solid rgba(20,20,20,0.06);
  box-shadow: 0 20px 40px -20px rgba(20,20,20,0.15);
  min-height: 420px;
  aspect-ratio: 4/5;
}
.bundle-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.bundle-cover-empty {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(20,20,20,0.15); font-size: 6rem; font-family: 'Outfit', sans-serif;
}

.bundle-summary {
  display: flex; flex-direction: column;
  gap: 14px;
  padding: 4px 4px 4px 8px;
  font-family: 'Inter', sans-serif;
  min-width: 0;
}
.bundle-summary .chip { align-self: flex-start; }
.bundle-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1; letter-spacing: -0.025em; font-weight: 800;
  color: #171717; margin: 0;
}
.bundle-short {
  font-size: 1rem; color: #4a4a4a; line-height: 1.55; margin: 0;
  max-width: 56ch;
}

.bundle-price-row {
  padding: 14px 16px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(20,20,20,0.06);
  border-radius: 12px;
}
.bundle-price-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: #7a7a7a; margin: 0 0 2px; font-weight: 500;
}
.bundle-price {
  font-family: 'Outfit', 'JetBrains Mono', monospace;
  font-size: 1.75rem; font-weight: 800; color: #171717; margin: 0;
  letter-spacing: -0.02em;
}
.bundle-price-sub {
  font-size: 12px; color: #7a7a7a; margin: 4px 0 0;
}

.bundle-cta-row {
  display: flex; flex-direction: column; gap: 8px;
}
.bundle-cta-row .btn { width: 100%; }

/* 2-button stack under bundle cards (homepage + category) */
.card-actions {
  display: flex; flex-direction: column; gap: 8px; margin-top: 10px;
}
.card-actions .btn { width: 100%; }

.bundle-quick-list { font-size: 14px; }
.bundle-quick-list .overline {
  color: #7a7a7a; font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 8px; font-weight: 600;
}
.bundle-quick-list .check-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 12px;
}
.bundle-quick-list .check-list li {
  font-size: 13px; color: #3a3a3a; line-height: 1.4;
}

/* Row 2: Full description toggle (full width) */
.bundle-desc-block {
  margin-bottom: 28px;
  background: #fff;
  border: 1px solid rgba(20,20,20,0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px -8px rgba(20,20,20,0.06);
}
.bundle-desc-toggle {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px;
  cursor: pointer;
  user-select: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 15px; color: #171717;
  transition: background .18s;
}
.bundle-desc-toggle::-webkit-details-marker { display: none; }
.bundle-desc-toggle:hover { background: #FAF7F1; }
.bundle-desc-toggle-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: #F5F0E8; color: #171717;
  transition: transform .25s ease, background .18s;
}
details[open] .bundle-desc-toggle-icon { transform: rotate(180deg); background: #171717; color: #fff; }

.bundle-desc-content {
  padding: 4px 22px 22px;
  border-top: 1px solid rgba(20,20,20,0.06);
  animation: descOpen .3s ease-out;
}
@keyframes descOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.bundle-desc-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px; line-height: 1.6; color: #3a3a3a;
  padding-top: 14px;
  max-width: 78ch;
}
.bundle-desc-list { margin-top: 20px; }
.check-list-cols {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 6px 16px;
  font-size: 14px; color: #3a3a3a;
}

/* Row 3: Demo gallery */
.bundle-gallery-wrap { margin-top: 12px; }
.bundle-gallery-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: 14px;
}
.bundle-gallery-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.5rem; font-weight: 700; color: #171717;
  letter-spacing: -0.02em; margin: 4px 0 0;
}
.bundle-gallery-tabs { margin-bottom: 14px; }
.bundle-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.bundle-gallery.compact {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}
.bundle-gallery .gallery-item {
  aspect-ratio: 4/3;
  border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(20,20,20,0.08);
  background: #F5F0E8; display: block;
  transition: transform .18s, box-shadow .18s;
}
.bundle-gallery .gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(20,20,20,0.2);
}
.bundle-gallery .gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Ordered steps on bundle page */
.bundle-steps {
  list-style: none;
  padding: 14px 16px;
  margin: 0;
  background: rgba(37, 211, 102, 0.06);
  border: 1px solid rgba(37, 211, 102, 0.22);
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px; line-height: 1.45;
  color: #2a2a2a;
}
.bundle-steps li {
  display: flex; align-items: flex-start; gap: 10px;
}
.bundle-step-n {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #075E54, #128C7E);
  color: #fff;
  border-radius: 50%;
  font-size: 11px; font-weight: 700;
  font-family: 'Outfit', sans-serif;
  margin-top: 1px;
}

.bundle-howto { margin-top: 4px; }
.bundle-howto-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 14px; font-weight: 700;
  color: #171717;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}

/* ============================================================
   PRO PRODUCT CARDS — larger, focused product name
   ============================================================ */
.grid .card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(20,20,20,0.06);
  box-shadow: 0 4px 12px -6px rgba(20,20,20,0.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .18s;
  display: flex; flex-direction: column;
}
.grid .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -18px rgba(20,20,20,0.22);
  border-color: rgba(20,20,20,0.14);
}
.grid .card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #F5F0E8;
}
.grid .card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.grid .card:hover .card-media img { transform: scale(1.06); }

/* Remove the dark ribbon look — put title band inside body */
.grid .card-title-band {
  background: transparent !important;
  border-bottom: 0 !important;
  padding: 18px 20px 4px !important;
  display: block;
}
.grid .card-title {
  font-family: 'Outfit', 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.35rem !important;
  line-height: 1.2 !important;
  color: #171717 !important;
  letter-spacing: -0.02em !important;
  min-height: 0 !important;
  -webkit-line-clamp: 2 !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.grid .card-body {
  padding: 8px 20px 20px !important;
  display: flex; flex-direction: column; gap: 14px;
  font-family: 'Inter', sans-serif;
}

.grid .card-price-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 12px;
  padding-top: 6px;
  border-top: 1px solid rgba(20,20,20,0.06);
}
.grid .card-price-label {
  font-size: 10px !important; letter-spacing: 0.12em !important;
  color: #7a7a7a !important; text-transform: uppercase; font-weight: 500;
}
.grid .card-price {
  font-family: 'Outfit', 'JetBrains Mono', monospace !important;
  font-size: 1.55rem !important; font-weight: 800 !important;
  color: #171717 !important; margin: 2px 0 0 !important;
  letter-spacing: -0.02em; line-height: 1.1;
}
.grid .card-price-sub {
  font-size: 11px !important; color: #7a7a7a !important; margin-top: 3px !important;
}
.grid .link-arrow {
  color: #075E54; font-weight: 600; font-size: 13px;
  text-decoration: none; align-self: flex-end;
  transition: color .15s, transform .15s;
}
.grid .link-arrow:hover { color: #128C7E; transform: translateX(2px); }

.grid .btn-primary.btn-block {
  padding: 12px 16px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  background: #171717;
  color: #fff;
  border: 0;
  transition: transform .12s ease, background .18s;
}
.grid .btn-primary.btn-block:hover {
  background: #0a0a0a; transform: translateY(-1px);
}

.grid .chip-abs {
  position: absolute; top: 12px; right: 12px;
  padding: 5px 10px;
  background: rgba(255,255,255,0.92);
  color: #171717;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(20,20,20,0.06);
}

/* ============================================================
   Categories dropdown in nav
   ============================================================ */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  background: transparent; border: 0; cursor: pointer;
  color: #3a3a3a; font-weight: 500; font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  transition: background .18s, color .18s;
}
.nav-dropdown-btn:hover { background: rgba(20,20,20,0.06); color: #0f0f0f; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border: 1px solid rgba(20,20,20,0.08);
  border-radius: 12px;
  box-shadow: 0 20px 40px -12px rgba(20,20,20,0.2);
  padding: 6px;
  min-width: 200px;
  opacity: 0; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: block;
  padding: 8px 12px; border-radius: 8px;
  color: #3a3a3a; font-size: 13.5px; font-weight: 500;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: background .12s, color .12s;
}
.nav-dropdown-item:hover { background: #F5F0E8; color: #171717; }

/* ============================================================
   Google Translate widget — restyle to fit our nav
   ============================================================ */
.nav-translate { display: inline-flex; align-items: center; margin: 0 4px; }
/* Hide the top bar that Google injects */
.skiptranslate, .goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
.goog-te-gadget { font-size: 0 !important; font-family: 'Inter', sans-serif !important; color: transparent !important; }
.goog-te-gadget > span { display: none !important; }
.goog-te-gadget .goog-te-combo {
  padding: 6px 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(20,20,20,0.14) !important;
  background: #fff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 12.5px !important; font-weight: 500 !important;
  color: #3a3a3a !important;
  cursor: pointer !important;
  min-width: 82px !important;
}
.goog-te-gadget .goog-te-combo:hover { border-color: rgba(20,20,20,0.28) !important; }

/* ============================================================
   Bundle page — no chat-dock shrink here (chat becomes floating)
   ============================================================ */
@media (min-width: 1280px) {
  body.page-bundle.chat-docked { padding-right: 0 !important; }
  body.page-bundle .dg-chat-panel {
    /* revert to floating popup style on bundle page */
    top: auto !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 380px !important;
    height: 620px !important;
  }
}

/* ============================================================
   BUNDLE DETAIL PAGE — FIX FOR TOP SECTION OVERLAP
   Add this block at the end of sitepro.css
   ============================================================ */

.bundle-topgrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.bundle-cover {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #F5F0E8, #E8E0D4);
  border: 1px solid rgba(20,20,20,0.06);
  box-shadow: 0 20px 40px -20px rgba(20,20,20,0.15);
  box-sizing: border-box;
}

.bundle-cover img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  box-sizing: border-box;
}

.bundle-cover-empty {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(20,20,20,0.15);
  font-size: 6rem;
  font-family: 'Outfit', sans-serif;
}

.bundle-summary {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 4px 4px 4px 8px;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
  overflow-wrap: break-word;
}

.bundle-summary > * {
  max-width: 100%;
  box-sizing: border-box;
}

.bundle-price-row {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.bundle-quick-list .check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px 12px;
}

@media (max-width: 900px) {
  .bundle-topgrid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .bundle-cover,
  .bundle-summary {
    width: 100%;
    max-width: 100%;
  }

  .bundle-cover {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 600px) {
  .bundle-topgrid {
    gap: 18px;
  }

  .bundle-cover {
    border-radius: 16px;
  }

  .bundle-summary {
    padding: 0;
  }
}


/* Mobile: hide translate + dropdown expand */
@media (max-width: 860px) {
  .nav-translate { display: none; }
  .nav-dropdown-menu {
    position: static; opacity: 1; pointer-events: auto;
    box-shadow: none; border: 0; padding: 0 0 0 12px;
    background: transparent; transform: none;
    min-width: auto;
  }
  .nav-dropdown-btn { width: 100%; justify-content: space-between; padding: 12px 14px; }
}
