
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

    :root {
      --blue: #0b64e8;
      --blue-2: #0067d9;
      --blue-dark: #082b66;
      --orange: #ff7a00;
      --red: #ef2b16;
      --text: #0b1e3d;
      --muted: #637186;
      --line: #dbe7f5;
      --soft: #f4f9ff;
      --surface: #ffffff;
      --shadow: 0 8px 26px rgba(15, 59, 122, .10);
      --radius: 14px;
      --container: 1240px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background: #fff;
      font-size: 14px;
      line-height: 1.45;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button, input { font: inherit; }

    .container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .top-header {
      background: #fff;
      border-bottom: 1px solid #eef2f7;
      position: sticky;
      top: 0;
      z-index: 40;
      box-shadow: 0 4px 18px rgba(4, 39, 84, .05);
    }
    .header-main {
      height: 74px;
      display: grid;
      grid-template-columns: 210px 1fr 330px;
      gap: 18px;
      align-items: center;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }
    .brand-mark {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: linear-gradient(135deg, #0b64e8, #18a4ff);
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 24px;
      box-shadow: 0 8px 18px rgba(11,100,232,.25);
    }
    .brand-title {
      font-size: 28px;
      font-weight: 600;
      letter-spacing: -.7px;
      color: #0a61df;
      line-height: .95;
    }
    .brand-title span {
      display: block;
      font-size: 15px;
      color: #ff7a00;
      letter-spacing: 0;
    }
    .search {
      height: 48px;
      border: 1px solid var(--line);
      border-radius: 10px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 160px 1fr 56px;
      background: #fff;
    }
    .search select, .search input {
      border: 0;
      outline: 0;
      background: #fff;
      min-width: 0;
      padding: 0 16px;
      color: #55657a;
    }
    .search select {
      border-right: 1px solid var(--line);
      color: #1a355e;
      font-weight: 500;
    }
    .search button {
      border: 0;
      color: #fff;
      cursor: pointer;
      background: var(--blue);
      font-size: 20px;
    }
    .quick-actions {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 20px;
    }
    .quick-action {
      position: relative;
      display: grid;
      grid-template-columns: 26px auto;
      gap: 7px;
      align-items: center;
      color: #102d55;
      white-space: nowrap;
    }
    .quick-action .ico {
      font-size: 24px;
      line-height: 1;
    }
    .quick-action b {
      font-size: 13px;
      font-weight: 600;
      display: block;
    }
    .quick-action small {
      display: block;
      color: var(--muted);
      font-size: 11px;
    }
    .badge {
      position: absolute;
      top: -8px;
      left: 18px;
      min-width: 18px;
      height: 18px;
      padding: 0 5px;
      border-radius: 99px;
      background: var(--orange);
      color: #fff;
      font-size: 11px;
      display: grid;
      place-items: center;
      font-weight: 600;
    }

    .nav-row {
      display: flex;
      align-items: center;
      min-height: 45px;
      gap: 30px;
      padding-bottom: 10px;
    }
    .category-btn {
      width: 200px;
      height: 39px;
      border: 0;
      border-radius: 7px;
      background: var(--blue);
      color: #fff;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      cursor: pointer;
      box-shadow: 0 7px 18px rgba(11, 100, 232, .22);
    }
    .nav {
      display: flex;
      align-items: center;
      gap: 34px;
      font-size: 13px;
      font-weight: 600;
      color: #102d55;
    }
    .nav a {
      position: relative;
      padding: 12px 0;
    }
    .nav a.active::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 1px;
      transform: translateX(-50%);
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--blue);
    }

    .mobile-toggle {
      display: none;
      margin-left: auto;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      width: 42px;
      height: 38px;
      color: var(--blue);
      font-size: 22px;
    }

    .hero {
      padding: 16px 0 20px;
    }
    .hero-card {
      min-height: 370px;
      overflow: hidden;
      position: relative;
      border-radius: 14px;
      background:
        radial-gradient(circle at 75% 40%, rgba(255,255,255,.95), rgba(206,232,255,.32) 40%, transparent 60%),
        linear-gradient(105deg, #eaf6ff 0%, #f9fdff 45%, #d9efff 100%);
      border: 1px solid #d2e9ff;
    }
    .hero-card:before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(#2d98ff 1.2px, transparent 1.2px);
      background-size: 18px 18px;
      opacity: .12;
      mask-image: linear-gradient(to right, transparent, #000 50%, transparent);
      pointer-events: none;
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 48% 52%;
      min-height: 370px;
      align-items: center;
      padding: 42px 42px 38px 70px;
      gap: 16px;
    }
    .hero h1 {
      margin: 0 0 16px;
      max-width: 500px;
      font-size: clamp(32px, 3.35vw, 48px);
      line-height: 1.05;
      font-weight: 600;
      letter-spacing: -1.7px;
      color: #063170;
    }
    .hero h1 span { color: var(--blue); display: block; }
    .hero p {
      margin: 0 0 22px;
      max-width: 470px;
      color: #30435f;
      font-size: 16px;
    }
    .hero-visual {
      align-self: stretch;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-left: 8px;
    }
    .hero-visual img {
      width: 100%;
      max-width: 610px;
      object-fit: contain;
      filter: drop-shadow(0 20px 30px rgba(16,75,135,.16));
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      height: 44px;
      padding: 0 24px;
      border-radius: 8px;
      border: 1px solid transparent;
      cursor: pointer;
      font-weight: 600;
      transition: .2s ease;
      white-space: nowrap;
    }
    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(11,100,232,.20);
    }
    .btn-primary {
      background: var(--orange);
      color: #fff;
    }
    .btn-blue {
      background: var(--blue);
      color: #fff;
    }
    .btn-outline {
      background: #fff;
      color: var(--blue);
      border-color: #a9c8f7;
    }
    .hero-trust {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 54px;
      max-width: 530px;
    }
    .trust-item {
      display: grid;
      grid-template-columns: 36px auto;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      color: #1b3c68;
      font-weight: 600;
    }
    .trust-icon {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #f4f9ff;
      color: var(--blue);
      display: grid;
      place-items: center;
      border: 1px solid #cfe0fb;
      font-size: 18px;
    }
    .trust-item small {
      color: #6b7c91;
      font-weight: 500;
    }
    .slider-dots {
      position: absolute;
      bottom: 18px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }
    .slider-dots i {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #b7d0ef;
    }
    .slider-dots i.active { background: var(--blue); }

    .section {
      padding: 16px 0 10px;
    }
    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin: 10px 0 16px;
    }
    .section-title {
      margin: 0;
      font-size: 21px;
      line-height: 1.2;
      font-weight: 600;
      color: #09295a;
      letter-spacing: -.4px;
    }
    .section-title .fire { color: var(--orange); }
    .view-all {
      color: var(--blue);
      font-weight: 600;
      font-size: 13px;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      gap: 16px;
    }
    .category-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 12px;
      min-height: 112px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: #102d55;
      font-weight: 600;
      font-size: 13px;
      transition: .2s ease;
    }
    .category-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
      border-color: #afd1fb;
    }
    .category-card img {
      height: 54px;
      object-fit: contain;
    }

    .tabs {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-left: 16px;
      vertical-align: middle;
    }
    .tab {
      padding: 8px 18px;
      border-radius: 999px;
      border: 1px solid var(--line);
      color: #41516b;
      font-size: 13px;
      font-weight: 500;
      background: #fff;
    }
    .tab.active {
      background: var(--blue);
      color: #fff;
      border-color: var(--blue);
    }
    .product-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
    }
    .product-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(9, 43, 91, .05);
      transition: .2s ease;
    }
    .product-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(16, 75, 135, .12);
      border-color: #bcd6fb;
    }
    .product-img {
      height: 156px;
      padding: 12px;
      background: linear-gradient(180deg, #fff, #f9fbfd);
      display: grid;
      place-items: center;
      position: relative;
    }
    .product-img img {
      max-height: 132px;
      object-fit: contain;
    }
    .product-info {
      padding: 0 12px 13px;
    }
    .product-name {
      min-height: 38px;
      margin: 0 0 6px;
      color: #0e294f;
      font-size: 13px;
      font-weight: 600;
      line-height: 1.35;
    }
    .product-desc {
      margin: 0 0 8px;
      color: #f05d2f;
      font-size: 12px;
      min-height: 33px;
      font-weight: 500;
    }
    .price {
      color: var(--red);
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
    }
    .card-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-bottom: 8px;
    }
    .mini-btn {
      height: 34px;
      border-radius: 6px;
      border: 1px solid #b7d2fb;
      background: #fff;
      color: var(--blue);
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
    }
    .mini-btn.buy {
      background: var(--orange);
      color: #fff;
      border-color: var(--orange);
    }
    .cart-btn {
      height: 32px;
      width: 100%;
      border-radius: 6px;
      border: 1px solid var(--blue);
      color: var(--blue);
      background: #eff6ff;
      font-weight: 600;
      font-size: 12px;
      cursor: pointer;
    }

    .promo-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      padding-top: 20px;
    }
    .promo {
      min-height: 205px;
      border-radius: 13px;
      overflow: hidden;
      position: relative;
      display: grid;
      grid-template-columns: 50% 50%;
      align-items: center;
      padding: 28px 34px;
      color: #fff;
      isolation: isolate;
    }
    .promo:before {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--promo-img);
      background-size: cover;
      background-position: center;
      opacity: .65;
      z-index: -1;
    }
    .promo-orange {
      background: linear-gradient(135deg, #ff7100, #ffba16);
    }
    .promo-blue {
      background: linear-gradient(135deg, #0064e5, #13a7ff);
    }
    .promo h3 {
      margin: 0 0 4px;
      font-size: 28px;
      line-height: 1.08;
      font-weight: 600;
    }
    .promo p {
      margin: 0 0 16px;
      font-size: 17px;
      font-weight: 600;
    }
    .promo .big {
      font-size: 48px;
      font-weight: 600;
      line-height: 1;
    }

    .strip-list {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 14px;
    }
    .mini-product {
      border: 1px solid var(--line);
      border-radius: 11px;
      background: #fff;
      display: grid;
      grid-template-columns: 72px 1fr;
      gap: 10px;
      align-items: center;
      min-height: 82px;
      padding: 10px;
      transition: .2s ease;
    }
    .mini-product:hover {
      box-shadow: var(--shadow);
      transform: translateY(-2px);
    }
    .mini-product img {
      height: 54px;
      width: 72px;
      object-fit: contain;
      background: #f8fbff;
      border-radius: 6px;
    }
    .mini-product b {
      display: block;
      color: #143158;
      font-size: 12px;
      font-weight: 600;
      line-height: 1.3;
      margin-bottom: 4px;
    }
    .mini-product span span {
      color: var(--red);
      font-size: 12px;
      font-weight: 600;
    }

    .footer {
      margin-top: 28px;
      padding: 34px 0 12px;
      background: linear-gradient(180deg, #eef7ff, #fff);
      border-top: 1px solid #dce8f6;
      color: #1b385f;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr 1.15fr;
      gap: 36px;
    }
    .footer .brand-title { font-size: 25px; }
    .footer p {
      margin: 12px 0 16px;
      color: #50637d;
      font-size: 13px;
    }
    .social {
      display: flex;
      gap: 8px;
    }
    .social a {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--blue);
      color: #fff;
      font-size: 13px;
      font-weight: 600;
    }
    .footer h4 {
      margin: 0 0 13px;
      font-size: 14px;
      font-weight: 600;
      color: #0d2a55;
    }
    .footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 9px;
      color: #52657e;
      font-size: 13px;
    }
    .newsletter {
      display: grid;
      grid-template-columns: 1fr 92px;
      height: 40px;
      border: 1px solid var(--line);
      border-radius: 8px;
      overflow: hidden;
      background: #fff;
    }
    .newsletter input {
      border: 0;
      outline: 0;
      padding: 0 12px;
      min-width: 0;
    }
    .newsletter button {
      border: 0;
      background: var(--blue);
      color: #fff;
      font-weight: 600;
      cursor: pointer;
    }
    .payments {
      margin-top: 20px;
      display: flex;
      justify-content: flex-end;
      gap: 16px;
      color: #2460b7;
      font-weight: 600;
    }
    .copyright {
      margin-top: 22px;
      border-top: 1px solid #dce8f6;
      padding-top: 14px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #718196;
      font-size: 12px;
    }

    @media (max-width: 1100px) {
      .header-main {
        grid-template-columns: 190px 1fr;
        height: auto;
        padding-top: 12px;
      }
      .quick-actions { grid-column: 1 / -1; justify-content: flex-start; padding-bottom: 8px; }
      .category-grid { grid-template-columns: repeat(4, 1fr); }
      .product-grid { grid-template-columns: repeat(3, 1fr); }
      .strip-list { grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 768px) {
      .container { width: min(100% - 24px, var(--container)); }
      .header-main { display: flex; flex-wrap: wrap; gap: 12px; }
      .brand-title { font-size: 22px; }
      .brand-mark { width: 38px; height: 38px; }
      .search { order: 3; flex-basis: 100%; grid-template-columns: 1fr 44px; }
      .search select { display: none; }
      .quick-actions { margin-left: auto; padding: 0; gap: 10px; }
      .quick-action span:not(.ico), .quick-action small, .quick-action b { display: none; }
      .quick-action { display: block; }
      .nav-row { gap: 10px; padding-bottom: 10px; }
      .category-btn { width: auto; padding: 0 14px; }
      .mobile-toggle { display: block; }
      .nav {
        display: none;
        position: absolute;
        left: 12px;
        right: 12px;
        top: 132px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 12px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
      }
      .nav.open { display: flex; }
      .nav a { padding: 9px 4px; }
      .nav a.active::after { display: none; }
      .hero-inner { grid-template-columns: 1fr; padding: 28px 22px; }
      .hero h1 { font-size: 30px; }
      .hero-trust { margin-top: 24px; grid-template-columns: 1fr; gap: 10px; }
      .hero-visual { order: -1; }
      .category-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .section-head { align-items: flex-start; gap: 10px; flex-direction: column; }
      .tabs { margin: 8px 0 0; overflow-x: auto; max-width: 100%; display:flex; }
      .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .product-img { height: 130px; }
      .promo-grid { grid-template-columns: 1fr; }
      .promo { grid-template-columns: 1fr; min-height: 190px; }
      .strip-list { grid-template-columns: 1fr 1fr; gap: 10px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
      .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
      .copyright { flex-direction: column; gap: 8px; align-items: flex-start; }
      .payments { justify-content: flex-start; flex-wrap: wrap; }
    }
  

/* WordPress/WooCommerce integration tweaks */
body.admin-bar .top-header { top: 32px; }
.product-name a { color: #0e294f; }
.price .amount { color: inherit; }
.mini-btn, .cart-btn.as-link { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.cart-btn.as-link { display: flex; }
.ec-product-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background: linear-gradient(135deg,#e7f3ff,#fff);
  color: #0b64e8;
  display: grid;
  place-items: center;
  font-size: 34px;
}
.mini-product .ec-product-placeholder {
  height: 54px;
  width: 72px;
  border-radius: 6px;
  font-size: 24px;
}
.ec-empty {
  padding: 24px;
  border-radius: 14px;
  border: 1px dashed #aacaf5;
  background: #f4f9ff;
  color: #143158;
  font-weight: 600;
}
.footer li { list-style: none; }
.footer-brand-link { width: max-content; }
@media (max-width: 782px) { body.admin-bar .top-header { top: 46px; } }

/* v4: bám HTML mẫu hơn và giảm heading */
.hero h1 { font-size: clamp(30px, 3.1vw, 44px); }
.section-title { font-size: 20px; }
.promo h3 { font-size: 26px; }
.promo .big { font-size: 46px; }
.promo strong { display:block; margin: 0 0 2px; font-size: 15px; font-weight:600; }
.promo-list { display:grid; gap:5px; margin: 0 0 14px; padding:0; list-style:none; font-size:13px; font-weight:600; }
.promo-list li::before { content:'✓'; margin-right:7px; }
.category-card .cat-icon { font-size:30px; color:var(--blue); }
.gdvp-home-page .category-grid { margin-bottom: 2px; }
@media (max-width:768px){
  .hero h1 { font-size:28px; }
  .section-title { font-size:19px; }
  .promo h3 { font-size:24px; }
  .promo .big { font-size:42px; }
}

/* v4.6 — header/cart/mobile fixes */
.quick-action.account-action {
  display: inline-flex;
  grid-template-columns: none;
  min-height: 34px;
  padding: 0 2px;
}
.quick-action.account-action b { font-size: 13px; }
.cart-action .js-cart-count { display: grid; }
.promo:before { display: none !important; }
.promo-orange {
  background: linear-gradient(135deg, #ff7a00 0%, #ff9a1f 45%, #ffc04d 100%) !important;
}
.promo-blue {
  background: linear-gradient(135deg, #0064e5 0%, #0b88ff 48%, #19b8ff 100%) !important;
}
.mobile-bottom-nav { display: none; }

@media (max-width: 768px) {
  body { padding-bottom: 72px; }
  .top-header { position: sticky; }
  .top-header .container { width: min(100% - 18px, var(--container)); }
  .header-main {
    display: grid !important;
    grid-template-columns: 1fr auto;
    gap: 8px 10px;
    align-items: center;
    padding: 8px 0 7px;
    height: auto;
  }
  .brand { min-width: 0; }
  .brand-mark { width: 32px; height: 32px; border-radius: 9px; font-size: 18px; }
  .brand-title { font-size: 20px; letter-spacing: -.5px; }
  .brand-title span { font-size: 12px; }
  .quick-actions {
    grid-column: 2;
    grid-row: 1;
    display: flex !important;
    margin-left: 0;
    gap: 8px;
    justify-content: flex-end;
    padding: 0;
  }
  .quick-action.account-action { display: none !important; }
  .quick-action.wishlist-action,
  .quick-action.cart-action {
    display: grid !important;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 10px;
    place-items: center;
    background: #fff;
    position: relative;
  }
  .quick-action.wishlist-action span:not(.ico),
  .quick-action.cart-action span:not(.ico),
  .quick-action small,
  .quick-action b { display: none !important; }
  .quick-action .ico { font-size: 20px; }
  .quick-action .badge {
    top: -7px;
    right: -7px;
    left: auto;
    min-width: 17px;
    height: 17px;
    font-size: 10px;
    padding: 0 4px;
  }
  .search {
    grid-column: 1 / -1;
    order: initial;
    flex-basis: auto;
    width: 100%;
    height: 42px;
    grid-template-columns: 1fr 42px;
    border-radius: 10px;
  }
  .search input { padding: 0 12px; font-size: 13px; }
  .search button { font-size: 18px; }
  .nav-row {
    min-height: auto;
    gap: 8px;
    padding: 0 0 9px;
  }
  .category-btn {
    flex: 1;
    width: auto;
    height: 36px;
    padding: 0 12px;
    justify-content: center;
    font-size: 13px;
  }
  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 36px;
    margin-left: 0;
  }
  .nav { top: 126px; }
  .promo { padding: 24px; }
  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    min-height: 62px;
    padding: 7px 6px calc(7px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 26px rgba(9,43,91,.10);
  }
  .mobile-bottom-nav a {
    position: relative;
    display: grid;
    place-items: center;
    gap: 2px;
    color: #16345e;
    font-size: 11px;
    font-weight: 600;
  }
  .mobile-bottom-nav a > span:first-child {
    font-size: 20px;
    line-height: 1;
  }
  .mobile-bottom-nav b {
    font-size: 10.5px;
    font-weight: 600;
    line-height: 1.1;
  }
  .mobile-bottom-badge {
    position: absolute;
    top: 0;
    right: 18%;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 10px !important;
    font-weight: 600;
  }
}
