@font-face {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 400;
    font-display: swap;
    src: url('/font18h/BeVietnamPro-Regular.woff2') format('woff2'), url('/font18h/BeVietnamPro-Regular.woff') format('woff');
}

@font-face {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 700;
    font-display: swap;
    src: url('/font18h/BeVietnamPro-Bold.woff2') format('woff2'), url('/font18h/BeVietnamPro-Bold.woff') format('woff');
}
:root {
      --theme-color: rgba(99, 57, 24, 0.9);
      --text-color: #ffffff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      font-family: 'Segoe UI', sans-serif;
      height: 100%;
      overflow-x: hidden;
    }
    .container {
      width: 100%;
      max-width: 1260px;
      margin: 0 auto;
      padding: 0 15px;
      overflow: hidden;
    }
    p, a, span {
      font-size: 1em;
      font-weight: 400;
      line-height: 1.8em;
      word-wrap: break-word;
      word-break: break-word;
      text-decoration: none;
    }
    span {
      display: inline-block;
      word-wrap: break-word;
      word-break: break-word;
    }
  /* header */
    .vp18h-site-header {
      position: relative;
      width: 100%;
      height: 100vh; /* Chiều cao của video */
      overflow: hidden;
    }

    #vp18h-headerVideo {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: auto;
      object-fit: cover;
      z-index: -1;
    }

    .vp18h-overlay {
      position: relative;
      z-index: 1;
    }

    .vp18h-overlay::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 90px;
      background: linear-gradient(to bottom, rgba(99, 57, 24, 0.9), rgba(99, 57, 24, 0.6), rgba(99, 57, 24, 0));
      opacity: 0;
      transition: opacity 0.6s ease;
      z-index: 1;
      pointer-events: none;
    }

    .vp18h-overlay.vp18h-menu-active::before {
      opacity: 1;
      pointer-events: auto;
    }

    .vp18h-header-container {
      position: fixed;
      max-width: 1260px;
      margin: 0 auto;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1002;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 10px;
      transition: all 0.3s ease;
    }

    .vp18h-logo img {
      width: 150px;
      height: auto;
    }

    .vp18h-main-nav {
      flex: 1;
      margin-left: 40px;
    }

    .vp18h-nav-items {
      display: flex;
      gap: 20px;
      list-style: none;
      opacity: 0;
      pointer-events: none;
      transform: translateX(-20px);
      transition: all 0.6s ease;
    }

    .vp18h-nav-items.vp18h-show {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(0);
    }
    .vp18h-horizontal-dropdown li > ul.vp18h-sub-dropdown li > a {
      font-weight: 400 !important;
    }
    .vp18h-horizontal-dropdown li > ul.vp18h-sub-dropdown li > a:hover {
      color: #FFF !important;
    }
    .vp18h-nav-item {
      position: relative;
      color: var(--text-color);
      padding-bottom: 10px;
      cursor: pointer;
      line-height: 1.8em;
    }
    .vp18h-nav-item a {
      color: #fff;
    }
    .vp18h-nav-item a:hover {
      color: #FF9634;
    }
    .vp18h-arrow-icon1 svg {
      width: 12px;
      height: 12px;
      fill: #633918;
      margin-left: -3px;
      transition: transform 0.3s ease;
    }

    .vp18h-arrow-icon svg {
      width: 12px;
      height: 12px;
      fill: var(--text-color);
      margin-left: -3px;
      transition: transform 0.3s ease;
    }

    .vp18h-nav-item:hover .vp18h-arrow-icon svg {
      transform: rotate(90deg);
    }

    .vp18h-dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: rgba(255, 255, 255, 0.95);
      color: #633918;
      min-width: 260px;
      border: 1px solid #eee;
      border-radius: 2px;
      list-style: none;
      z-index: 9999;
    }
    .vp18h-main-nav .vp18h-dropdown::before {
        content: "";
        position: absolute;
        top: -10px; 
        left: 20px; 
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #ddd; 
    }

    .vp18h-main-nav .vp18h-dropdown::after {
        content: "";
        position: absolute;
        top: -9px; 
        left: 21px; 
        border-left: 9px solid transparent;
        border-right: 9px solid transparent;
        border-bottom: 9px solid #fff; 
    }
    .vp18h-main-nav .vp18h-dropdown li {
        border-bottom: 1px solid #eee;
    }
    .vp18h-nav-item:hover > .vp18h-dropdown {
      display: block;
    }

    .vp18h-dropdown li {
      padding: 10px;
      color: #633918;
    }
    .vp18h-dropdown li a {
      color: #633918;
    }

    .vp18h-dropdown li:hover {
      background: rgba(99, 57, 24, 0.8);
      color: #fff;
    }
     .vp18h-dropdown li:hover a {
      color: #fff;
    }

    .vp18h-dot {
      display: inline-block;
      width: 6px;
      height: 6px;
      border: 1px solid #633918;
      border-radius: 50%;
      margin-right: 8px;
    }

    .vp18h-dropdown li:hover .vp18h-dot {
      border-color: #fff;
    }

  .vp18h-horizontal-dropdown {
    display: none;
    flex-direction: row;
    width: auto;
    min-width: 50vw;
    max-width: 100vw;
    position: absolute;
    top: 100%;
    left: -200px;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 9999;
    border-radius: 2px;
    padding: 10px 20px;
    overflow-x: auto; 
  }

  .vp18h-nav-item:hover > .vp18h-horizontal-dropdown {
    display: flex;
  }

  .vp18h-horizontal-dropdown > li {
    flex: 1;
    display: flex;
    min-width: 230px;
    flex-direction: column;
    color: #633918;
    font-weight: bold;
    position: relative;
    border-right: 1px solid #ccc;
    padding-right: 15px;
    margin-right: 15px;
  }
  .vp18h-horizontal-dropdown li a {
    color: #633918;
    font-weight: 700;
  }

  .vp18h-horizontal-dropdown > li:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
  }

  .vp18h-sub-dropdown {
    display: block;
    margin-top: 10px;
  }

  .vp18h-sub-dropdown li {
    padding: 6px 10px;
    font-size: 1em;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: #633918;
    transition: background 0.3s ease;
  }
  .vp18h-sub-dropdown li a {
    color: #633918;
  }
  .vp18h-sub-dropdown li:hover {
    background-color: rgba(99, 57, 24, 0.8);
    color: #fff;
  }

  .vp18h-sub-dropdown li:hover .vp18h-dot {
    border-color: #fff;
  }

    .vp18h-main-nav .vp18h-horizontal-dropdown::before {
        content: "";
        position: absolute;
        top: -10px; 
        left: 20px; 
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #ddd; 
    }

    .vp18h-main-nav .vp18h-horizontal-dropdown::after {
        content: "";
        position: absolute;
        top: -9px; 
        left: 21px; 
        border-left: 9px solid transparent;
        border-right: 9px solid transparent;
        border-bottom: 9px solid #fff; 
    }
    .vp18h-main-nav .vp18h-horizontal-dropdown {
        border-right: 1px solid #eee;
    }

    
    .vp18h-horizontal-dropdown > li > .vp18h-lv1-icon {
      align-self: flex-start;
    }

    .vp18h-icons {
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 1003;
    }

    .vp18h-menu-icon {
      background: none;
      border: none;
      color: white;
      font-size: 28px;
      cursor: pointer;
    }

    .vp18h-lang-flag {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      margin-top: -6px;
      cursor: pointer;
    }

    .vp18h-audio-btn {
      font-size: 26px;
      border: none;
      background: none;
      color: white;
      margin-top: -6px;
      cursor: pointer;
    }
    .vp18h-menu-icon .vp18h-mobile-icon path {
      fill: #ffffff;
      transition: fill 0.3s ease;
    }

    body.vp18h-sticky .vp18h-menu-icon .vp18h-mobile-icon path {
      fill: #FF8B22;
    }
    @media screen and (min-width: 769px) {
        .vp18h-menu-close {
            display: none !important;
        }
    }
    /* ================= MOBILE (≤768px) ================= */
@media (max-width: 768px) {

  /* MENU PANEL */
  .vp18h-nav-items {
    display: none;                             /* Ẩn mặc định */
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    padding: 100px 20px 40px;
    background-color: rgba(99,57,24,.97);
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;         /* mượt iOS */
    animation: slideDown .3s ease-out;
  }
  .vp18h-nav-items.vp18h-show { display:flex; }

  @keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
  }

  /* SUBMENU MẶC ĐỊNH ẨN */
  .vp18h-has-dropdown > .vp18h-dropdown,
  .vp18h-has-dropdown > .vp18h-horizontal-dropdown {
    display: none;
    position: static;      /* chiếm chỗ, đẩy mục dưới xuống */
    width: 100%;
  }

  /* MỞ accordion khi có class .vp18h-open (JS toggle) */
  .vp18h-nav-item.vp18h-open > .vp18h-dropdown,
  .vp18h-nav-item.vp18h-open > .vp18h-horizontal-dropdown {
    display: block;
  }

  /* NÚT MŨI TÊN */
  .vp18h-arrow-btn {
    background: none;
    border: none;
    padding: 0 4px;
    margin-left: -3px;
    line-height: 1;
    cursor: pointer;
  }
  .vp18h-arrow-btn svg {
    width: 12px; height: 12px;
    fill: #fff;
    transition: transform .25s ease;
  }
  .vp18h-nav-item.vp18h-open .vp18h-arrow-btn svg {
    transform: rotate(90deg);
  }

  /* HIỂN THỊ SUB-SUB (store -> products) LUÔN BLOCK */
  .vp18h-horizontal-dropdown {
    flex-direction: column;
    overflow-x: visible;
    padding: 0 0 0 10px;
  }
  .vp18h-horizontal-dropdown > li {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
  }
  .vp18h-sub-dropdown {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 2px solid rgba(255,255,255,.3);
  }

  /* MÀU CHỮ, LOGO, NÚT ĐÓNG */
  .vp18h-nav-item a,
  .vp18h-nav-label { color:#fff; }
  .vp18h-logo img { width: 90px; }

  .vp18h-menu-close {
    display: none;
    position: fixed;
    top: 20px; right: 30px;
    font-size: 32px;
    background: none;
    border: none;
    color: #fff;
    z-index: 10001;
  }
  .vp18h-main-nav .vp18h-dropdown::before {
        content: "";
        position: absolute;
        top: 24px; 
        left: 20px; 
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #ddd; 
    }

    .vp18h-main-nav .vp18h-dropdown::after {
        content: "";
        position: absolute;
        top: 23px; 
        left: 21px; 
        border-left: 9px solid transparent;
        border-right: 9px solid transparent;
        border-bottom: 9px solid #fff; 
    }

}
/* ============== END MOBILE ======================= */
    /* Tin tức */
    .vp18h-tintuc {
      padding: 10px 10px;
      /*background: #f4f4f4;*/
      color: #333;
    }
    .vp18h-content {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 1rem;
      justify-content: space-between;
    }
    .vp18h-text-art a {
      text-decoration: none;
      color: #333;
      font-style: var(--font-family-text);
      font-size: var(--font-family-text);
      font-weight: normal;
      line-height: 150%;
    }
    .vp18h-text-art a:hover {
      color: #633918;
    }
    .vp18h-column-art {
      flex: 1 1 calc(50% - 20px);
      background: white;
      padding: 10px;
      /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
      box-sizing: border-box;
      position: relative;
      overflow: hidden;
    }
    .highlighted-article img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 6px;
      transform: translateX(100%);
      transition: transform 0.5s;
    }

    .highlighted-article.slide-in img {
      transform: translateX(0%);
    }

    .vp18h-column-art .article {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      cursor: pointer;
      position: relative;
      transition: box-shadow 0.3s;
    }
    .vp18h-column-art .article a {
      position: relative;
      z-index: 1;
    }

    .vp18h-column-art .article img {
      width: 100px;
      height: 80px;
      object-fit: cover;
      border-radius: 3px;
      margin-right: 15px;
      transition: transform 0.5s;
    }

    .vp18h-column-art .article:hover img {
      transform: scale(1.1);
    }

    .vp18h-column-art .article-text {
      flex: 1;
      font-size: 16px;
      line-height: 1.5;
    }

    .vp18h-column-art .article-text a {
      text-decoration: none;
      color: #333;
      z-index: 1;
    }

    .vp18h-column-art .article-text a:hover {
      text-decoration: underline;
      color: #633918;
    }

    .vp18h-column-art .article::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 91%;
      /*background: rgba(0, 0, 0, 0.2);
      opacity: 0.3;*/
      transition: opacity 0.3s;
      z-index: 0;
    }

    .vp18h-column-art .article.active::after {
      opacity: 1;
      background: rgba(0, 0, 0, 0.1);
      border-right: 5px solid #FF9634;
    }

    /* Footer */
  footer {
    background: transparent;
    padding: 38px 0;
    color: #333;
    overflow: hidden;
    overflow-x: hidden;
  }

  .footer-top {
      border-top: 2px solid #333;
      padding-top: 43px;
  }

  .footer-content {
      display: flex;
      justify-content: space-between;
      margin-bottom: 38px;
      flex-wrap: wrap;
  }

  .footer-column {
      flex: 1;
      min-width: 250px;
      margin-right: 80px;
  }

  .footer-column:last-child {
      margin-right: 0;
  }

  .footer-column h3 {
      font-size: 18px;
      margin-bottom: 10px;
  }

  .footer-column p,
  .footer-column a {
      font-size: 15px;
      color: #333;
      text-decoration: none;
      margin-bottom: 3px;
      display: block;
  }

  .footer-column a:hover {
      color: #633918;
  }

  .footer-policies,
  .footer-info {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 43px;
      flex-wrap: wrap;
  }

  .footer-policies ul,
  .footer-info ul {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      text-align: left;
  }

  .footer-policies ul li,
  .footer-info ul li {
      list-style: none;
      margin-right: 3px;
      position: relative;
  }

  .footer-policies ul li::after {
      content: '|';
      margin: 0 10px;
      color: #333;
  }

  .footer-policies ul li:last-child::after {
      display: none;
  }

  .footer-policies a,
  .footer-info a {
      font-size: 15px;
      color: #333;
      text-decoration: none;
  }

  .footer-policies a:hover,
  .footer-info a:hover {
      color: #633918;
  }

  .footer-bottom {
      border-top: 1px solid #ccc;
      width: 100%;
      max-width: 418px;
      padding: 20px 20px 0 0;
  }

  .footer-bottom p {
      font-size: 15px;
      color: #333;
      text-align: left;
  }
  h1 {
      font-size: 1.8em;
      font-weight: 700;
      line-height: 2em;
      position: relative;
      overflow: hidden;
      color: #333;
  }

  .vp18h_light-sparkle::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      animation: vp18h_sparkle 10s infinite;
  }

  @keyframes vp18h_sparkle {
      0% {
          left: -100%;
      }
      50% {
          left: 100%;
      }
      100% {
          left: 100%;
      }
  }
  @media (max-width: 768px) {
    .vp18h-column-art {
        flex: 1 1 100%;
    }
    .highlighted-article img {
        height: 300px;
    }
    .vp18h_slide {
        width: calc(100% / 3); 
    }
    .vp18h_services-content {
        flex-direction: column;
    }
    .vp18h_container {
        flex-direction: column;
    }

    .vp18h_column {
        width: 100%;
        padding: 10px 0;
    }
    .footer-content {
        flex-direction: column;
        text-align: left;
    }

    .footer-column {
        margin-right: 0;
        margin-bottom: 20px;
        padding: 0;
    }

    .footer-policies,
    .footer-info {
        flex-direction: column;
    }

    .footer-policies ul,
    .footer-info ul {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-policies ul li,
    .footer-info ul li {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .footer-bottom {
        width: 100%;
        text-align: left;
        max-width: 100%;
    }
    .footer-policies,
    .footer-info {
        padding: 0;
    }
    .footer-policies ul li::after {
    content: '';
    margin: 0 10px;
    color: #333;
}
  }
  /* Hotline zalo */
  .giuseart-nav {
    position: fixed;
    right: 12px;
    background:rgba(255, 255, 255, 1);
    border-radius: 5px;
    width: auto;
    z-index: 9999; 
    bottom: 50px;
    padding: 10px 0;
    border: 1px solid #f2f2f2;
}

.giuseart-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative; 
    z-index: 10000; 
}

.giuseart-nav ul li {
    list-style: none !important;
    position: relative; 
    z-index: 10000; 
}

.giuseart-nav ul>li a {
    border: none;
    padding: 3px;
    display: block;
    border-radius: 5px;
    text-align: center;
    font-size: 10px;
    line-height: 15px;
    color: #515151;
    font-weight: 700;
    max-width: 72.19px;
    max-height: 54px;
    text-decoration: none;
    position: relative; 
    z-index: 10000; 
}

.giuseart-nav ul>li .chat_animation {
    display: none;
}

.giuseart-nav ul>li a i.ticon-heart {
    background: url(image/location.png) no-repeat;
    background-size: contain;
    width: 36px;
    height: 36px;
    display: block;
    position: relative; 
    z-index: 10000; 
}

.giuseart-nav ul>li a i.ticon-zalo-circle2 {
    background: url(image/img_zalo_chuan.png) no-repeat;
    background-size: contain;
    width: 36px;
    height: 36px;
    display: block;
    position: relative; 
    z-index: 10000; 
}

.giuseart-nav li .button {
    background: transparent;
}

.giuseart-nav ul>li a i.ticon-angle-up {
    background: url(image/scroll-top-icon.svg) no-repeat;
    background-size: contain;
    width: 36px;
    height: 36px;
    display: block;
    margin-left: 18px;
    position: relative; 
    z-index: 10000; 
}

.giuseart-nav ul>li a i {
    width: 33px;
    height: 33px;
    display: block;
    margin: auto;
    position: relative; 
    z-index: 10000; 
}

.giuseart-nav ul li .button .btn_phone_txt {
    position: relative;
    top: 35px;
    font-size: 10px;
    font-weight: bold;
    text-transform: none;
    z-index: 10000; 
}

.giuseart-nav ul li .button .phone_animation i {
    display: inline-block;
    width: 27px;
    font-size: 26px;
    margin-top: 12px;
    position: relative; 
    z-index: 10000; 
}

.giuseart-nav ul>li a.chat_animation svg {
    margin: -13px 0 -20px;
    position: relative; 
    z-index: 10000; 
}

.giuseart-nav ul>li a i.ticon-messenger {
    background: url(image/img_mess-chuan.png) no-repeat;
    background-size: contain;
    width: 36px;
    height: 36px;
    display: block;
    position: relative; 
    z-index: 10000; 
}

.giuseart-nav ul li .button .phone_animation i {
    display: inline-block;
    width: 27px;
    font-size: 26px;
    margin-top: 12px;
    position: relative; 
    z-index: 10000; 
}

.giuseart-nav ul>li a i.icon-phone-w {
    background: url(image/icon-hotline.gif) no-repeat;
    background-size: contain;
    position: relative; 
    z-index: 10000; 
}

.giuseart-nav ul li .button .btn_phone_txt {
    position: relative;
    z-index: 10000; 
}
.phone-mobile {
    display: none;
}

@media only screen and (max-width: 600px) {
    .giuseart-nav li .chat_animation {
        display: block !important;
    }

    .giuseart-nav li .button .phone_animation {
        box-shadow: none;
        position: absolute;
        top: -16px;
        left: 50%;
        transform: translate(-50%, 0);
        width: 50px;
        height: 50px;
        border-radius: 100%;
        background: #6cb917;
        line-height: 15px;
        border: 2px solid white;
        z-index: 10000; 
    }

    .giuseart-nav ul>li a {
        padding: 0;
        margin: 0 auto;
        z-index: 10000; 
    }

    .giuseart-nav {
        background: rgba(255, 255, 255, 1);
        width: 100%;
        border-radius: 0;
        color: #fff;
        height: 60px;
        overflow: hidden;
        line-height: 50px;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 9999; 
        padding: 5px;
        margin: 0;
        box-shadow: 0 4px 10px 0 #000;
        overflow-x: hidden;
    }

    .giuseart-nav li {
        float: left;
        width: 20%;
        padding-right: 20px;
        list-style: none;
        height: 50px;
        position: relative; 
        z-index: 10000; 
    }

    .phone-mobile {
        display: block !important;
    }
}
/* He thong cua hang */
.vp18h-store-system {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #fffdf9, #f9f5f0);
}

.vp18h-store-header {
  text-align: center;
  margin-bottom: 40px;
}

.vp18h-store-header h2 {
  font-family: 'Playball', cursive;
  font-size: 48px;
  color: #FF9634;
  margin-bottom: 10px;
}

.vp18h-store-header p {
  font-size: 18px;
  color: #555;
}

.vp18h-store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1260px;
  margin: 0 auto;
}

.vp18h-store-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  cursor: pointer;
}
.vp18h-store-hidden {
  display: none;
}
.vp18h-load-more {
  background: #FF9634;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.vp18h-load-more:hover {
  background: #e36c0f;
  transform: scale(1.05);
}
.vp18h-store-card:hover {
  transform: scale(1.02);
}

.vp18h-store-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vp18h-store-card:hover img {
  transform: scale(1.08);
}

.vp18h-store-info {
  position: absolute;
  bottom: 0;
  background: rgba(99, 57, 24, 0.85);
  color: #fff;
  padding: 16px;
  width: 100%;
  text-align: center;
}

.vp18h-store-info h3 {
  margin: 0;
  font-size: 20px;
}

.vp18h-store-info p {
  margin: 4px 0 0;
  font-size: 14px;
}

/* Một số thẻ rộng hơn trên desktop */
@media (min-width: 992px) {
  .vp18h-store-card.wide {
    grid-column: span 2;
  }
}
/* End He thong cua hang */
/* Hoạt động cộng đồng */
.blog-section {
  padding: 30px 20px;
  background: #fafafa;
  text-align: left;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1260px;
  margin: auto;
  padding-top: 15px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-post-title {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
}

.blog-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-btn {
  display: inline-block;
  align-self: start;
  background: linear-gradient(to right, #FF8515, #FF993E);
  color: #fff;
  text-decoration: none;
  padding: 6px 15px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background 0.4s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.blog-btn::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.4s ease;
  z-index: -1;
}

.blog-btn:hover::after {
  width: 100%;
}

.blog-btn:hover {
  transform: translateY(-2px);
}
/* End hoạt động cộng đồng */
/* Liên hệ - contact */
.vp18h_container_contact {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 15px 15px;
}
.vp18h_column_contact h3 {
  padding-bottom: 12px;
}

.vp18h_row_contact {
    margin-bottom: 30px;
}
.text-center {
    text-align: center;
}
.vp18h_contact-section h1 {
    font-size: 2.1em;
    margin-bottom: 10px;
}
.vp18h_contact-section h3 {
    font-size: 1.2em;
    margin-bottom: 6px;
}
/* Hàng 2: Bố cục 2 cột */
.vp18h_contact-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    /* flex-wrap: wrap; */
}
/* Cột 1: Thông tin liên hệ */
.vp18h_contact-info p {
    font-size: 1em;
    margin-bottom: 15px;
}

.vp18h_contact-info .icon {
    margin-right: 10px;
}
/* Cột 2: Form liên hệ */
.vp18h_contact-form form {
    display: flex;
    flex-direction: column;
}

.vp18h_form-row {
    margin-bottom: 15px;
    display: flex; 
    gap: 10px; 
}

.vp18h_form-row input,
.vp18h_form-row textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em; 
    box-sizing: border-box;
}
textarea {
    font-family: 'Be Vietnam Pro', sans-serif; 
    font-size: 1em; 
    font-weight: 400; 
    line-height: 1.5; 
    color: #333; 
    padding: 10px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    box-sizing: border-box; 
    resize: none; 
    width: 100%;
    outline: #333; 
    background-color: #fff; 
    -webkit-appearance: none; 
    -moz-appearance: none; 
    appearance: none; 
}

.vp18h_form-row input[type="text"],
.vp18h_form-row input[type="tel"] {
    flex: 1; 
}

.vp18h_form-row textarea {
    resize: vertical;
    height: 120px;
}

.vp18h_form-row button {
    width: 100%;
    padding: 10px;
    background-color: #0080C0;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.vp18h_form-row button:hover {
    background-color: #005f80;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .vp18h_contact-content {
        flex-direction: column;
    }
    .vp18h_contact-section h1 {
        font-size: 1.4em;
        margin-bottom: 5px;
    }
}
.input-label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    pointer-events: none; 
    color: #999; 
    transition: 0.2s ease all;
}

.align-text-ftv:focus + .input-label,
.align-text-ftv:not(:placeholder-shown) + .input-label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: #333; 
}
.align-text-ftv{text-align: right;}
.anthongbao-tuvan{display:none; color: red; background-color: #FFF;}
.antb-tvan2 {display:none; color: green;}.antb-tuvan3 {display:none; color: red;}
/* End lien he */
/* Lên đầu trang */
.to-top-pc a {
    cursor: pointer; 
}
.to-top-pc a i.ticon-angle-up {
  background: url(image/scroll-top-icon.svg) no-repeat;
  background-size: contain;
  width: 36px;
  height: 36px;
  display: block;
  margin-left: 18px;
  position: relative;
  z-index: 10000;
}