/* Import Google Sans */
@import url('https://fonts.cdnfonts.com/css/google-sans');
@font-face {
  font-family: 'Google Sans';
  src: url('/fonts/GoogleSansPlus/GoogleSans-Thin.woff2') format('woff2'),
       url('/fonts/GoogleSansPlus/GoogleSans-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Google Sans';
  src: url('/fonts/GoogleSansPlus/GoogleSans-Light.woff2') format('woff2'),
       url('/fonts/GoogleSansPlus/GoogleSans-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Google Sans';
  src: url('/fonts/GoogleSansPlus/GoogleSans-LightItalic.woff2') format('woff2'),
       url('/fonts/GoogleSansPlus/GoogleSans-LightItalic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Google Sans';
  src: url('/fonts/GoogleSansPlus/GoogleSans-Regular.woff2') format('woff2'),
       url('/fonts/GoogleSansPlus/GoogleSans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Google Sans';
  src: url('/fonts/GoogleSansPlus/GoogleSans-Italic.woff2') format('woff2'),
       url('/fonts/GoogleSansPlus/GoogleSans-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Google Sans';
  src: url('/fonts/GoogleSansPlus/GoogleSans-Medium.woff2') format('woff2'),
       url('/fonts/GoogleSansPlus/GoogleSans-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Google Sans';
  src: url('/fonts/GoogleSansPlus/GoogleSans-MediumItalic.woff2') format('woff2'),
       url('/fonts/GoogleSansPlus/GoogleSans-MediumItalic.woff') format('woff');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Google Sans';
  src: url('/fonts/GoogleSansPlus/GoogleSans-Bold.woff2') format('woff2'),
       url('/fonts/GoogleSansPlus/GoogleSans-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Google Sans';
  src: url('/fonts/GoogleSansPlus/GoogleSans-Black.woff2') format('woff2'),
       url('/fonts/GoogleSansPlus/GoogleSans-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}



/* Root variables */
:root {
  --bg-main: #05060a;
  --bg-section: #0a0b10;
  --bg-card: #101119;
  --bg-card-soft: #141522;
  --accent: #ff184e;
  --accent-soft: rgba(255, 24, 78, 0.14);
  --accent-strong: #ff335f;
  --text-main: #f7f7ff;
  --text-muted: #a1a4b8;
  --border-subtle: #262738;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
  --shadow-glow: 0 0 32px rgba(255, 24, 78, 0.35);
  --max-width: 1160px;
  --transition-fast: 0.18s ease-out;
}

  /* Increase base font size for Google Sans */
  html {
    font-size: 18px;
  }

  /* Apply Google Sans correctly */
  :root {
    --font-main: 'Google Sans', sans-serif;
  }

  body {
    font-family: var(--font-main);
    background: radial-gradient(circle at top, #141624 0, #05060a 50%);
    color: var(--text-main);
    line-height: 1.6;
  }



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

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

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* =============== Header ================= */

    header {
      position: sticky;
      top: 0;
      z-index: 40;
      border-bottom: 1px solid rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(16px);
      background: linear-gradient(
        to bottom,
        rgba(5, 6, 10, 0.9),
        rgba(5, 6, 10, 0.75)
      );
    }

    .nav {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-mark {
      width: 32px;
      height: 32px;
      border-radius: 12px;
      background: radial-gradient(circle at 0 0, #ff335f, #401624);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 700;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .logo-text span:first-child {
      font-weight: 600;
      font-size: 16px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .logo-text span:last-child {
      font-size: 11px;
      color: var(--text-muted);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 20px;
      font-size: 15px;;
      color: var(--text-muted);
    }

    .nav-links a {
      position: relative;
      padding-bottom: 3px;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 1px;
      background: var(--accent);
      transition: width var(--transition-fast);
    }

    .nav-links a:hover {
      color: var(--text-main);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .badge-timer {
      font-size: 16px;
      padding: 6px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255, 24, 78, 0.5);
      color: #fff;
      background: rgba(255, 24, 78, 0.85);
    }
    @media (max-width: 768px) {
  .badge-timer {
    display: none !important;
  }
}
@media (max-width: 576px) {
  .badge-timer {
    display: none !important;
  }
}



    .btn {
      border-radius: 999px;
      padding: 9px 18px;
      font-size: 15px;;
      font-weight: 500;
      border: 1px solid transparent;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      transition:
        background var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        border-color var(--transition-fast);
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, #ff184e, #ff6a3d);
      color: #ffffff;
      box-shadow: var(--shadow-glow);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 0 36px rgba(255, 24, 78, 0.6);
    }

    .btn-ghost {
      background: transparent;
      color: var(--text-main);
      border-color: rgba(255, 255, 255, 0.22);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.06);
    }

    /* =============== Hero ================= */

    .hero {
      padding: 80px 16px 60px;
      text-align: center;
    }

    .hero-inner {
      max-width: 980px;
      margin: 0 auto;
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 12px;
      border-radius: 999px;
      font-size: 11px;
      color: var(--accent-strong);
      background: rgba(255, 24, 78, 0.08);
      border: 1px solid rgba(255, 24, 78, 0.35);
      margin-bottom: 18px;
    }

    .hero-pill span {
      color: var(--text-muted);
    }

    .hero h1 {
      font-size: clamp(32px, 4vw, 38px);
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .hero h1 span {
      color: var(--accent-strong);
    }

    .hero-subtitle {
      font-size: 14px;
      color: var(--text-muted);
      max-width: 520px;
      margin: 0 auto 24px;
    }

    .hero-ctas {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 26px;
    }

    .hero-meta {
      display: flex;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
      font-size: 11px;
      color: var(--text-muted);
    }

    .hero-meta span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .dot {
      width: 5px;
      height: 5px;
      border-radius: 999px;
      background: #44d07b;
      box-shadow: 0 0 12px rgba(68, 208, 123, 0.9);
    }

    /* =============== Sections ================= */

    section {
      padding: 28px 16px !important;
    }

    .section-inner {
      max-width: var(--max-width);
      margin: 0 auto;
    }

    .section-header {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 14px !important;
      text-align: left;
    }

    .section-eyebrow {
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 11px;
      color: var(--accent-strong);
    }

    .section-title {
      font-size: 32px;
      margin-bottom: 4px !important;
            margin-top: 4px !important;

    }

    .section-description {
      font-size: 14px;
      color: var(--text-muted);
      max-width: 520px;
      margin-top: 2px !important;
    }

    /* =============== Key Features ================= */

    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .feature-card {
      background: radial-gradient(circle at top left, #181a2b, #0b0c13);
      border-radius: var(--radius-lg);
      padding: 18px 16px 16px;
      border: 1px solid rgba(255, 255, 255, 0.04);
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .feature-icon {
      width: 26px;
      height: 26px;
      border-radius: 10px;
      background: rgba(255, 24, 78, 0.16);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      margin-bottom: 9px;
    }

    .feature-title {
      font-size: 15px;
      margin-bottom: 4px;
    }

    .feature-text {
      font-size: 14px;
      color: var(--text-muted);
    }

    /* =============== Hot Deal Strip ================= */

    .hotdeal {
      padding-top: 0;
    }

    .hotdeal-card {
      background: radial-gradient(circle at center, #1b0b12, #050509 70%);
      border-radius: 22px;
      border: 1px solid rgb(252, 199, 9);
      box-shadow: var(--shadow-glow);
      padding: 22px 22px 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      align-items: center;
      justify-content: space-between;
    }

    .hotdeal-left {
      max-width: 540px;
    }

    .hotdeal-label {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(255, 24, 78, 0.16);
      color: #ffffff;
      margin-bottom: 7px;
    }

    .hotdeal-name {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .hotdeal-desc {
      font-size: 15px;;
      color: var(--text-muted);
    }

    .hotdeal-right {
      text-align: right;
      min-width: 200px;
    }

    .hotdeal-old {
      font-size: 11px;
      color: var(--text-muted);
      text-decoration: line-through;
      margin-bottom: 4px;
    }

    .hotdeal-price {
      font-size: 26px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 2px;
    }

    .hotdeal-price span {
      font-size: 15px;;
      font-weight: 400;
      color: var(--text-muted);
    }

    .hotdeal-saving {
      font-size: 12px;
      color: var(--accent-strong);
      margin-bottom: 8px;
    }

    .hotdeal-cta {
      display: flex;
      justify-content: flex-end;
    }

    /* =============== Core Pricing (3 boxes) ================= */

    .core-pricing {
      padding-top: 10px;
    }

    /* Pricing grid – auto responsive */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 16px;
    }


    .price-card {
      background: linear-gradient(145deg, #131421, #05060b);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-subtle);
      padding: 18px 18px 16px;
      box-shadow: var(--shadow-soft);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 12px;
      position: relative;
    }

    .price-card.highlight {
      box-shadow: var(--shadow-glow);
      border-color: rgba(255, 24, 78, 0.7);
    }

    .badge-best {
      position: absolute;
      top: 10px;
      right: 12px;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 3px 8px;
      border-radius: 999px;
      background: var(--accent);
      color: #ffffff;
    }

    .price-plan {
      font-size: 18px;
      margin-bottom: 2px;
      color: #ffd56a;
    }

    .price-sub {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 9px;
    }

    .price-number {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 2px;
    }

    .price-number span {
      font-size: 12px;
      font-weight: 400;
      color: var(--text-muted);
    }

    .price-note {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    /* Price features – refined */
    .price-features {
      list-style: none;
      margin: 0;
      padding: 0;            /* Không đẩy quá xa bên trái */
      font-size: 14px;       /* Tăng size */
      line-height: 1.45;     /* Đỡ bị thưa */
      color: var(--text-muted);
    }

    .price-features li {
      display: flex;
      align-items: flex-start;
      gap: 6px;
      margin-bottom: 6px;
      padding-left: 0;       /* Loại bỏ thụt lề */
    }

    .price-features li::before {
      content: "✓";
      color: #44d07b;
      font-size: 14px;      /* Tăng size cho đồng bộ */
      margin-top: 1px;
    }

    .price-actions {
      display: flex;
      gap: 8px;
      margin-top: auto;
    }

.btn-secondary {
  font-size: 14px;                    /* đồng bộ với nút chính */
  line-height: 1;                     /* tránh bị đội/lệch chữ */
  padding: 10px 16px;                 /* tăng cho bằng chiều cao nút chính */
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;               /* canh giữa tuyệt đối */
  align-items: center;                /* canh chữ vertically */
  justify-content: center;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
}


    /* =============== Tables ================= */

    .tables-section {
      padding-top: 10px;
    }

    .pricing-tables {
      display: flex;
      flex-direction: column;
      gap: 26px;
    }

    .table-block {
      background: radial-gradient(circle at top left, #151621, #05060a);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-subtle);
      padding: 16px 16px 14px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
    }

    .table-title-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
      gap: 12px;
    }

    .table-title {
      font-size: 24px;
      font-weight: 600;
    }

    .table-caption {
      font-size: 14px;
      color: var(--text-muted);
    }

    .table-link {
      font-size: 14px;
      color: var(--accent-strong);
      text-decoration: underline;
      cursor: pointer;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
    }

    thead {
      background: rgba(255, 255, 255, 0.02);
    }

    th,
    td {
      padding: 7px 6px;
      text-align: left;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    th {
      font-weight: 500;
      color: var(--text-muted);
      font-size: 14px;
    }

    tbody tr:nth-child(even) {
      background: rgba(255, 255, 255, 0.01);
    }

    .tag-hot {
      font-size: 10px;
      padding: 2px 6px;
      border-radius: 999px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      background: rgba(255, 184, 0, 0.14);
      color: #ffd56a;
    }

    /* =============== Metrics ================= */

    .metrics {
      padding-top: 24px;
    }

    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .metric {
      text-align: left;
      font-size: 15px;;
    }

    .metric strong {
      font-size: 24px;
      display: block;
    }

    .metric span {
      display: block;
      color: var(--text-muted);
      font-size: 11px;
    }

    /* =============== Testimonial ================= */

    .testimonial {
      padding-top: 18px;
    }

    .testimonial-card {
      background: radial-gradient(circle at top left, #141623, #05060b);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-subtle);
      padding: 18px 18px 16px;
      display: grid;
      grid-template-columns: 1.1fr 2fr;
      gap: 16px;
      align-items: center;
    }

    .testimonial-avatar {
      height: 120px;
      border-radius: 16px;
      background: radial-gradient(circle at 0 0, #ff184e, #141623);
    }

    .testimonial-quote {
      font-size: 15px;;
    }

    .testimonial-name {
      margin-top: 10px;
      font-size: 12px;
      color: var(--text-muted);
    }

    /* =============== FAQ ================= */

    .faq {
      padding-top: 26px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .faq-item {
      background: var(--bg-card-soft);
      border-radius: var(--radius-md);
      border: 1px solid rgba(255, 255, 255, 0.05);
      padding: 12px 13px;
    }

    .faq-q {
      font-size: 15px;
      margin-bottom: 4px;
    }

    .faq-a {
      font-size: 14px;
      color: var(--text-muted);
    }

    /* =============== Final CTA & Footer ================= */

    .final-cta {
      padding: 34px 16px 40px;
    }

    .final-box {
      max-width: var(--max-width);
      margin: 0 auto;
      border-radius: 22px;
      padding: 24px 22px 22px;
      background: radial-gradient(circle at center, #191428, #05060a 70%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: var(--shadow-soft);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
    }

    .final-heading {
      font-size: 24px;
      margin-bottom: 4px;
      color:#ffd768;
    }

    .final-text {
      font-size: 15px;;
      color: var(--text-muted);
      max-width: 640px;
    }

    footer {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      background: #030309;
      padding: 16px 16px 18px;
      font-size: 16px;
      color: var(--text-muted);
    }

    .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* =============== Responsive ================= */

    @media (max-width: 960px) {
      .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .pricing-grid {
        grid-template-columns: 1fr;
      }
      .metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .testimonial-card {
        grid-template-columns: 1fr;
      }
      .faq-grid {
        grid-template-columns: 1fr;
      }
      .nav-links {
        display: none;
      }
    }

    @media (max-width: 640px) {
      .hotdeal-card {
        padding: 18px 14px;
      }
      .hotdeal-right {
        text-align: left;
      }
      .hero {
        padding-top: 60px;
      }
    }
  


/*refactor*/
/* ================= Fade-In Scroll Animation ================= */

.fade-section {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= Hero w/ Image ================= */

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-left {
  flex: 1;
  min-width: 320px;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-img {
  width: 360px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.55));
  animation: floatHero 5s ease-in-out infinite;
  border-radius: 12px;
}

/* Floating effect cho hình */
@keyframes floatHero {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Mobile responsive */
@media (max-width: 860px) {
  .hero-flex {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-img {
    width: 260px;
  }

  .hero-left {
    text-align: center;
  }
}
/* ================= HERO LEFT–RIGHT ================= */

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-left-image {
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: center;
}

.hero-img {
  width: 85%;
  max-width: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.55));
}

.hero-right-text {
  flex: 1.3;
  min-width: 360px;
}



/* ===================== Web Combo Section ===================== */

#web-combo {
  padding-top: 20px;
}

.web-combo-wrap {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.web-combo-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.web-combo-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.combo-feature {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
  cursor: pointer; /* <<< THÊM DÒNG NÀY */
}

.combo-feature:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}




.combo-icon {
  font-size: 16px;
}

.web-combo-card {
  background: linear-gradient(145deg, #18121f, #08070d);
  border-radius: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.combo-badge {
  font-size: 11px;
  text-transform: uppercase;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  margin-bottom: 14px;
}

.combo-title {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.combo-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;;
  color: var(--text-muted);
}

.combo-list li::before {
  content: "✔";
  color: #44d07b;
  margin-right: 6px;
}

.combo-price {
  margin-top: 10px;
  margin-bottom: 14px;
}

.combo-old {
  font-size: 12px;
  text-decoration: line-through;
  color: var(--text-muted);
}

.combo-new {
  font-size: 26px;
  font-weight: 700;
  margin: 4px 0;
}

.combo-new span {
  font-size: 15px;;
  font-weight: 400;
  color: var(--text-muted);
}

.combo-save {
  font-size: 12px;
  color: var(--accent-strong);
}

.combo-actions {
  display: flex;
  gap: 10px;
}
  
@media (max-width: 900px) {
  .web-combo-grid {
    grid-template-columns: 1fr;
  }
}



/* Highlight full row when it contains .tag-hot */
table tbody tr.best-seller-row {
  background: rgba(255, 193, 7, 0.12) !important;
  color: #ffd768;
}

table tbody tr.best-seller-row td {
  color: #ffd768;
  font-weight: 600;
}

/* ===================== CHAT BUBBLE ===================== */

.chat-bubble {
  position: fixed;
  bottom: 90px;
  right: 22px;
  width: 48px;
  height: 48px;
  background: #ff184e;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(255, 24, 78, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: bubble-pulse 2.2s infinite ease-in-out;
}

.chat-bubble:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 0 26px rgba(255, 24, 78, 0.75);
}

/* Chat Icon */
.chat-icon {
  font-size: 20px;
  color: #fff;
  z-index: 2;
}

/* Tooltip */
.chat-tooltip {
  position: absolute;
  right: 60px;
  background: #ffffff;
  color: #111;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.chat-bubble:hover .chat-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse Animation */
@keyframes bubble-pulse {
  0% {
    box-shadow: 0 0 10px rgba(255, 24, 78, 0.45);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 24, 78, 0.75);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 24, 78, 0.45);
  }
}

.logo-bf-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo-main {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-bf-text {
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: #dfe3ff;
  opacity: 0.9;
}
