:root {
    --primary-red: #d41111;
    --primary-yellow: #ffd700;
    --text-dark: #181111;
    --text-gray: #6b7280;
    --bg-light: #f9fafb;
    --bg-dark: #121212;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f8f6f6;
    color: var(--text-dark);
    line-height: 1.5;
}
html {
  scroll-behavior: smooth;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 16px;
}

.section-title {
    text-align: center;
}

.section-title h3 {
    color: #b91c1c;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    border-bottom: 4px solid #b91c1c;
    display: inline-block;
    padding-bottom: 4px;
}

.section-title p {
    color: var(--text-gray);
    font-size: 20px;
    margin: 8px 0 0 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 20px 0;
}

.product-card {
    background: var(--white);
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    /* Thêm sau - XS */
    min-width: 0;  
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
}

.card-image {
    /* Thêm sau - XS */
    width: 100%;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
}


.card-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.price-original {
    font-size: 16px;
    color: #9ca3af;
    text-decoration: line-through;
    margin: 0;
}

.price-sale {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
    margin: 0;
}

.btn-buy {
    background-color: rgba(212, 17, 17, 0.1);
    color: var(--primary-red);
    border: none;
    padding: 8px 0;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    width: 100%;
    transition: background-color 0.2s;
    
}

.btn-buy a{
    text-decoration: none;
    color: #d41111;
}

.btn-buy:hover {
    background-color: rgba(212, 17, 17, 0.2);
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h3 {
        font-size: 24px;
    }
    
    .section-title p {
        font-size: 16px;
    }
}

.btn-primary {
  text-decoration: none;
}

.footer-bottom p {
    color: var(--primary-yellow);
}

.lienhe-section {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.lienhe-left {
  flex: 1;
}

.lienhe-left h2 {
  font-size: 23px;
  font-weight: bold;
  color: #d41111;
      text-align: center;
      margin: 30px 0px 0px 0px;
}

.lienhe-left p {
  font-size: 16px;
  margin: 30px 0px 0px 0px;
}

.contact-info {
  margin-top: 20px;
}

.contact-info p {
  font-size: 16px;
  margin: 10px 0;
}

.contact-info i {
  margin-right: 10px;
  color: red;
}

.lienhe-right {
  flex: 1;
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.lienhe-right h3 {
  font-size: 22px;
  font-weight: bold;
  margin: 0px 0px 15px 0px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.submit-btn {
  background-color: red;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.note {
  margin-top: 10px;
  font-size: 13px;
  color: gray;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lienhe-section {
    flex-direction: column;
    padding: 20px;
  }

  .lienhe-left,
  .lienhe-right {
    width: 100%;
  }

  .lienhe-right {
    padding: 20px;
  }

  .submit-btn {
    font-size: 16px;
    padding: 14px;
  }

  .form-group label {
    font-size: 15px;
  }

  .form-group input,
  .form-group select {
    font-size: 15px;
  }

  h2, h3 {
    font-size: 20px;
    line-height: 1.4;
  }
}
.countdown {
  font-size: 36px;
  font-weight: bold;
  color: red;
  margin: 0 0px 0;
  letter-spacing: 2px;
  text-align: center;
}

  .submit-btn{
    transition: background-color .15s ease, transform .05s ease, filter .15s ease;
    -webkit-tap-highlight-color: transparent;
  }

  /* Khi hover (PC) */
  .submit-btn:hover{
    filter: brightness(0.95);
  }

  /* Khi click/nhấn */
  .submit-btn:active{
    filter: brightness(0.85); /* đậm hơn */
    transform: translateY(1px); /* cảm giác nhấn xuống */
  }

  /* Khi focus (tab) */
  .submit-btn:focus{
    outline: none;
  }


  .hero-cta .btn-primary{
    display: inline-block;
    text-decoration: none;     /* không gạch dưới */
    color: #fff;
    font-weight: 800;
    letter-spacing: .5px;
    padding: 14px 34px;
    border-radius: 999px;

    background: #e60000;
    transition: transform .18s ease, background-color .18s ease;
    will-change: transform;
    transform: translateY(0) scale(1);
    -webkit-tap-highlight-color: transparent;
  }
  
    .hero-cta .btn-primary{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    letter-spacing: .4px;
    padding: 14px 36px;
    border-radius: 999px;
    background: #e60000;
    -webkit-tap-highlight-color: transparent;
  }

  /* animation đập */
  .hero-cta .btn-primary.heartbeat-btn{
  animation: heartbeatStrong .95s cubic-bezier(.3,.05,.35,1) infinite !important;
  transform-origin: center;
  will-change: transform;
}

  .hero-cta .btn-primary.heartbeat-btn:hover{
  animation-duration: .82s !important;
    background: #d00000;
  }

  .hero-cta .btn-primary.heartbeat-btn:active{
  animation: none !important;
  transform: scale(.90);
    background: #b80000;
  }

@keyframes heartbeatStrong{
  0%   { transform: scale(1); }
  18%  { transform: scale(1.20); }
  32%  { transform: scale(0.97); }
  46%  { transform: scale(1.26); }
  60%  { transform: scale(0.96); }
  100% { transform: scale(1); }
}

  @media (prefers-reduced-motion: reduce){
    .hero-cta .btn-primary.heartbeat-btn{
      animation: none;
    }
  }

  /* nút cơ bản */
.btn-consult{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border: 2px solid #e60000;
  border-radius: 999px;
  background: #fff;
  color: #e60000;
  font-weight: 700;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

/* ép chắc animation chạy */
a.btn-consult.heartbeat-btn{
  animation: heartbeatStrong .95s cubic-bezier(.3,.05,.35,1) infinite !important;
  transform-origin: center;
  will-change: transform;
}

a.btn-consult.heartbeat-btn:hover{
  animation-duration: .82s !important;
}

a.btn-consult.heartbeat-btn:active{
  animation: none !important;
  transform: scale(.90);
}

@keyframes heartbeatStrong{
  0%   { transform: scale(1); }
  18%  { transform: scale(1.20); }
  32%  { transform: scale(0.97); }
  46%  { transform: scale(1.26); }
  60%  { transform: scale(0.96); }
  100% { transform: scale(1); }
}

/* Desktop giữ nguyên */
.products-section .mobile-nav{ display: none; }


@media (max-width: 768px){
  .products-section .products-mobile-wrap{
    position: relative;
    overflow: hidden;
  }

  /* ép mọi product-grid trong products-section thành slider ngang */
  .products-section .products-mobile-wrap > .product-grid{
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 12px !important;
    padding: 0 10px !important;
    margin: 0 !important;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .products-section .products-mobile-wrap > .product-grid::-webkit-scrollbar{
    display: none;
  }

  .products-section .products-mobile-wrap > .product-grid > .product-card{
    flex: 0 0 calc(100% - 20px) !important;
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    min-width: calc(100% - 20px) !important;
    margin: 0 !important;
    scroll-snap-align: start;
  }

  .products-section .mobile-nav{
    display: flex !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 999px;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .products-section .mobile-nav.prev{ left: 8px; }
  .products-section .mobile-nav.next{ right: 8px; }
}

@media (min-width: 769px){
  .products-section .mobile-nav{ display: none !important; }
}

  /* Desktop: ẩn mũi tên */
  #products-gas .mobile-nav { display: none; }

  /* Mobile slider cho section gas */
  @media (max-width: 768px){
    #products-gas .products-mobile-wrap{
      position: relative;
      overflow: hidden;
    }

    #products-gas #productGridGas.product-grid{
      display: flex !important;
      flex-direction: row !important;
      flex-wrap: nowrap !important;
      grid-template-columns: none !important;
      overflow-x: auto !important;
      overflow-y: hidden !important;
      gap: 12px !important;
      padding: 0 10px !important;
      margin: 0 !important;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    #products-gas #productGridGas.product-grid::-webkit-scrollbar{
      display: none;
    }

    #products-gas #productGridGas.product-grid > .product-card{
      flex: 0 0 calc(100% - 20px) !important;
      width: calc(100% - 20px) !important;
      max-width: calc(100% - 20px) !important;
      min-width: calc(100% - 20px) !important;
      margin: 0 !important;
      scroll-snap-align: start;
    }

    #products-gas .mobile-nav{
      display: flex !important;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 50;
      width: 38px;
      height: 38px;
      border: none;
      border-radius: 999px;
      background: rgba(0,0,0,.55);
      color: #fff;
      font-size: 26px;
      line-height: 1;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      user-select: none;
    }

    #products-gas .mobile-nav.prev{ left: 8px; }
    #products-gas .mobile-nav.next{ right: 8px; }

    #products-gas .mobile-nav:active{
      transform: translateY(-50%) scale(.94);
    }
  }

  @media (min-width: 769px){
    #products-gas .mobile-nav{ display: none !important; }
  }

    /* Desktop: ẩn mũi tên */
  #products-electric .mobile-nav { display: none; }

  /* Mobile slider cho section điện */
  @media (max-width: 768px){
    #products-electric .products-mobile-wrap{
      position: relative;
      overflow: hidden;
    }

    #products-electric #productGridElectric.product-grid{
      display: flex !important;
      flex-direction: row !important;
      flex-wrap: nowrap !important;
      grid-template-columns: none !important;
      overflow-x: auto !important;
      overflow-y: hidden !important;
      gap: 12px !important;
      padding: 0 10px !important;
      margin: 0 !important;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    #products-electric #productGridElectric.product-grid::-webkit-scrollbar{
      display: none;
    }

    #products-electric #productGridElectric.product-grid > .product-card{
      flex: 0 0 calc(100% - 20px) !important;
      width: calc(100% - 20px) !important;
      max-width: calc(100% - 20px) !important;
      min-width: calc(100% - 20px) !important;
      margin: 0 !important;
      scroll-snap-align: start;
    }

    #products-electric .mobile-nav{
      display: flex !important;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 50;
      width: 38px;
      height: 38px;
      border: none;
      border-radius: 999px;
      background: rgba(0,0,0,.55);
      color: #fff;
      font-size: 26px;
      line-height: 1;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      user-select: none;
    }

    #products-electric .mobile-nav.prev{ left: 8px; }
    #products-electric .mobile-nav.next{ right: 8px; }

    #products-electric .mobile-nav:active{
      transform: translateY(-50%) scale(.94);
    }
  }

  @media (min-width: 769px){
    #products-electric .mobile-nav{ display: none !important; }
  }

    /* Desktop: ẩn mũi tên */
  #products-rotary .mobile-nav { display: none; }

  /* Mobile slider cho section mâm xoay */
  @media (max-width: 768px){
    #products-rotary .products-mobile-wrap{
      position: relative;
      overflow: hidden;
    }

    #products-rotary #productGridRotary.product-grid{
      display: flex !important;
      flex-direction: row !important;
      flex-wrap: nowrap !important;
      grid-template-columns: none !important;
      overflow-x: auto !important;
      overflow-y: hidden !important;
      gap: 12px !important;
      padding: 0 10px !important;
      margin: 0 !important;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    #products-rotary #productGridRotary.product-grid::-webkit-scrollbar{
      display: none;
    }

    #products-rotary #productGridRotary.product-grid > .product-card{
      flex: 0 0 calc(100% - 20px) !important;
      width: calc(100% - 20px) !important;
      max-width: calc(100% - 20px) !important;
      min-width: calc(100% - 20px) !important;
      margin: 0 !important;
      scroll-snap-align: start;
    }

    #products-rotary .mobile-nav{
      display: flex !important;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 50;
      width: 38px;
      height: 38px;
      border: none;
      border-radius: 999px;
      background: rgba(0,0,0,.55);
      color: #fff;
      font-size: 26px;
      line-height: 1;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      user-select: none;
    }

    #products-rotary .mobile-nav.prev{ left: 8px; }
    #products-rotary .mobile-nav.next{ right: 8px; }

    #products-rotary .mobile-nav:active{
      transform: translateY(-50%) scale(.94);
    }
  }

  @media (min-width: 769px){
    #products-rotary .mobile-nav{ display: none !important; }
  }

  .products-mobile-wrap .product-grid > .product-card{
  scroll-snap-stop: always;
}

/* Giữ nguyên màu sắc, xóa gạch chân cho số điện thoại tự động link */
a[href^="tel"] {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

/* Nếu bạn muốn các icon + số nằm gọn trong dòng, thêm tùy chọn này: */
.contact-info a {
  display: inline;
  font-size: inherit;
  line-height: 1.5;
}

/* THÊM XS */
/* ====== COMMON: áp cho mọi section sản phẩm ====== */
.products-section .product-grid,
.products-section-alt .product-grid{
  display: grid;
  gap: 16px;
  align-items: stretch;
}

/* Desktop lớn: 5 sp / 1 hàng */
@media (min-width: 1024px){
  #products-wood .product-grid,
  #products-gas  .product-grid{
    display: grid; /* đảm bảo grid đang chạy */
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
  }
}

/* Laptop nhỏ: 4 sp / 1 hàng */
@media (min-width: 992px) and (max-width: 1199.98px){
  #products-wood .product-grid,
  #products-gas  .product-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Tablet ngang: 3 sp / 1 hàng */
@media (min-width: 768px) and (max-width: 991.98px){
   #products-wood .product-grid,
  #products-gas  .product-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Tablet dọc: 2 sp / 1 hàng */
@media (min-width: 576px) and (max-width: 767.98px){
   #products-wood .product-grid,
  #products-gas  .product-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* THÊM BUTTON KHI ZOOM > 100% BỊ TRÀN */
/* ========= ÁP DỤNG CHUNG CHO TẤT CẢ SECTION SẢN PHẨM ========= */

/* Desktop default: GRID responsive (tự giảm cột khi zoom/hẹp) */
@media (min-width: 769px){
  .products-section .product-grid,
  .products-section-alt .product-grid{
    display: grid;
    gap: 16px;
    /* auto-fit giúp tự giảm số cột khi hẹp/zoom */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  /* Desktop: mặc định ẩn nút */
  .products-section .mobile-nav,
  .products-section-alt .mobile-nav{
    display: none;
  }
}

/* Khi JS phát hiện tràn => add class .desktop-slider vào section */
@media (min-width: 769px){
  .products-section.desktop-slider .products-mobile-wrap,
  .products-section-alt.desktop-slider .products-mobile-wrap{
    position: relative;
    overflow: hidden;
  }

  .products-section.desktop-slider .product-grid,
  .products-section-alt.desktop-slider .product-grid{
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 48px; /* chừa chỗ cho nút */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .products-section.desktop-slider .product-grid::-webkit-scrollbar,
  .products-section-alt.desktop-slider .product-grid::-webkit-scrollbar{
    display: none;
  }

  .products-section.desktop-slider .product-card,
  .products-section-alt.desktop-slider .product-card{
    flex: 0 0 clamp(240px, 22vw, 320px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-width: 0;
  }

  /* hiện nút khi slider desktop */
  .products-section.desktop-slider .mobile-nav,
  .products-section-alt.desktop-slider .mobile-nav{
    display: flex !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 999px;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
  }

  .products-section.desktop-slider .mobile-nav.prev,
  .products-section-alt.desktop-slider .mobile-nav.prev{ left: 8px; }

  .products-section.desktop-slider .mobile-nav.next,
  .products-section-alt.desktop-slider .mobile-nav.next{ right: 8px; }
}
#section-8 {
  scroll-margin-top: 90px;
}
/* CSS THÊM NGÀY - GIỜ SECTION 8 */
.schedule-row {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 12px;
  align-items: end;
}

.schedule-row .form-group {
  margin-bottom: 15px;
}

.date-field-wrap {
  position: relative;
}

.date-field-wrap input,
.schedule-time input {
  width: 100%;
  height: 42px;
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #fff;
  color: #181111;
}

.date-field-wrap input {
  padding-right: 38px;
  appearance: none;
  -webkit-appearance: none;
}

.date-field-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #666;
  pointer-events: none;
}

.date-field-wrap input::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.schedule-time input {
  appearance: auto;
  -webkit-appearance: auto;
}

@media screen and (max-width: 768px) {
  .schedule-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* css chỉnh sửa scroll iphone giờ section 8 */
.time-picker {
  position: relative;
  width: 100%;
}

#giotuvan_display {
  width: 100%;
  height: 42px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  color: #181111;
  font-size: 16px;
  cursor: pointer;
  outline: none;
}

#giotuvan_display:focus,
.time-picker.open #giotuvan_display {
  border-color: #222;
  box-shadow: 0 0 0 1px #222 inset;
}

.time-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 999;
  padding: 14px 10px 12px;
}

.time-picker.open .time-dropdown {
  display: block;
}

.time-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.time-col {
  height: 170px;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 56px 0;
  position: relative;
}

.time-col::-webkit-scrollbar {
  display: none;
}

.time-col::before {
  content: "";
  position: sticky;
  top: 50%;
  display: block;
  height: 0;
  pointer-events: none;
}

.time-col-item {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  user-select: none;
  transition: all 0.18s ease;
}

.time-col-item.active {
  color: #ff1a1a;
  font-size: 18px;
  font-weight: 700;
}

.time-separator {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  align-self: center;
}

.time-columns {
  position: relative;
}

.time-columns::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 38px;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.04);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  pointer-events: none;
  border-radius: 8px;
}

.time-actions {
  display: flex;
  justify-content: center;
}

.time-confirm-btn {
  border: none;
  background: #ff1a1a;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.06s ease;
}

.time-confirm-btn:hover {
  background: #e01111;
}

.time-confirm-btn:active {
  transform: translateY(1px);
}

@media (max-width: 768px) {
  .time-dropdown {
    min-width: 100%;
  }
}

/* CSS FORM SĐT SECTION 8 */
.error-message {
  display: block;
  font-size: 13px;
  color: #e11d48;
  margin-top: 4px;
}

.input-error {
  border-color: #e11d48 !important;
  background-color: #fff5f5;
}