:root {
    --font-figtree: Figtree, sans-serif;
    --font-goudy: Sorts Mill Goudy, serif;
    --color-gray: #fffcf3;
    --color-primary: #0F110C;
    --color-secondary: #161813;
  }
  
  /* Base Styles */
  body {
    font-family: var(--font-figtree);
    background-color: var(--color-primary);
    padding: 12px;
    color: var(--color-gray);
    width: 100%;
    height: 100vh
  }
  
  
  .container-custom {
    max-width: 1560px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .banner-slider .swiper-pagination span {
    width: 10px;
    height: 10px;
    background-color: #fff;
    opacity: 0.5;
    margin: 0px !important;
  }
  
  .banner-slider .swiper-pagination span.swiper-pagination-bullet-active {
    opacity: 1;
  }
  
  
  /* Utilities */
  .inverted-radius-top-right,
  .inverted-radius-bottom-left,
  .since-inverted-radius-left,
  .since-inverted-radius-right {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
  }
  
  .inverted-radius-top-right {
    left: 100%;
    top: 0;
    box-shadow: -15px -12px 0px var(--color-primary);
  }
  
  .inverted-radius-bottom-left {
    top: 100%;
    left: 0;
    box-shadow: -15px -12px 0px var(--color-primary);
  }
  
  .since-inverted-radius-left {
    bottom: 0;
    right: 100%;
    box-shadow: 13px 13px var(--color-primary);
  }
  
  .since-inverted-radius-right {
    bottom: 100%;
    right: 0;
    box-shadow: 12px 12px 0px var(--color-primary);
  }
  
  
  .banner-item-content-title {
    font-size: 26px;
    font-style: italic;
    margin-bottom: 8px;
  }
  
  .banner-item-content-desc {
    font-size: 15px;
    line-height: calc(24 / 15);
    color: rgba(255, 252, 244, 0.6);
  }
  
  .banner-item-since {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 10;
    padding: 0 16px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    border-top-left-radius: 18px;
    font-size: 15px;
  }
  
  
  
  .inverted-radius-bottom-left {
    position: absolute;
    top: 100%;
    left: 0;
    width: 30px;
    height: 30px;
    box-shadow: -15px -12px 0px #0F110C;
    border-radius: 50%;
    background-color: transparent;
  }
  
  .since-inverted-radius-left {
    position: absolute;
    bottom: 0;
    right: 100%;
    width: 30px;
    height: 30px;
    box-shadow: 13px 13px 0px #0F110C;
    border-radius: 50%;
    background-color: transparent;
  }
  
  
  
  /* Components */
  .banner-item-content p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFFCF499;
    font-size: 15px;
    line-height: calc(18 / 15);
  }
  .banner-item-content-desc {
    display: block !important;
  }
  .banner-item-content-desc strong {
  color: #DA1F26
  }
  
  .checkout .banner-item-content p {
    color: #fff;
  }
  
  .checkout-form-list {
    background-color: var(--color-secondary);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .checkout-form-list.radio-field label {
    font-size: 15px;
  }
  
  .checkout-form-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .checkout-form-item span {
    font-style: italic;
    font-size: 18px;
    line-height: calc(25 / 18);
  }
  
  .checkout-form-item input {
    background-color: var(--color-primary);
    border-radius: 8px;
    min-height: 45px;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
    border: none;
    font-style: normal;
    min-width: 100%;
    border: 1px solid transparent
  }
  
  .checkout-form-item input:focus {
    border: 1px solid #fff;
  }
  
  
  /* menu */
  /* Utilities */
  .product-slider .swiper-slide.swiper-slide-active {
    background-color: #0F110C;
    border-radius: 18px;
  }
  
  .menu-inverted-radius-top-right {
    position: absolute;
    right: 0;
    bottom: 100%;
    width: 30px;
    height: 30px;
    box-shadow: 12px 12px 0px #0F110C;
    border-radius: 50%;
    background-color: transparent;
  }
  
  .menu-inverted-radius-bottom-left {
    position: absolute;
    bottom: 20px;
    right: 100%;
    width: 30px;
    height: 30px;
    box-shadow: 13px 16px 0px #0F110C;
    border-radius: 50%;
    background-color: transparent;
  }
  
  
  
  /* Components */
  
  .product-slider-thumb .swiper-slide {
    overflow-y: auto;
  }
  
  .swiper-slide::-webkit-scrollbar {
    width: 5px;
  }
  
  .swiper-slide::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }
  
  .swiper-slide::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
  }
  
  .swiper-slide::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  
  .product-item {
    border-radius: 12px;
    background-color: #161813;
    padding: 8px;
    position: relative;
    display: flex;
    gap: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }
  
  .product-item:hover {
    transform: translateY(-5px);
    background-color: #FFFFFF33
  }
  
  .product-item-image {
    height: 75px;
    overflow: hidden;
    flex-shrink: 1;
    background-color: #ffffff2e;
    border-radius: 10px;
    padding: 5px;
  }
  
  
  
  
  
  .product-item-content {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .product-item-title {
    font-family: var(--font-goudy);
    font-size: 14px;
    line-height: calc(24 / 20);
  }
  
  
  .product-item-desc {
    display: flex;
    justify-content: space-between;
    padding-right: 0;
    font-size: 12px;
  }
  
  
  
  .product-item-desc p:first-child {
    color: rgba(255, 252, 244, 0.6);
    display: flex;
    flex-direction: column;
  }
  
  .product-item-desc p:last-child {
    color: #FFFCF3;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    justify-content: center;
  }
  
  
  .product-item-add {
    /* position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%); */
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 14px;
    cursor: pointer;
  }
  
  
  .product-slider .swiper-slide img {
    border-radius: 12px;
    margin-bottom: 12px;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: all 0.3s ease;
    background: #0000001a;
    border-radius: 18px;
    padding: 15px;
  }
  
  .product-slider .swiper-slide:hover img {
    transform: scale(1.02);
  }
  
  .product-slider .swiper-slide h3 {
    font-size: 15px;
    line-height: calc(18 / 15);
    text-align: center;
    color: #DA1F26;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  /* Custom Radio Button */
  .menu-check-method {
    position: relative;
    background-color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
  }
  
  .menu-check-method::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .menu-check-method:checked {
    border-color: blue;
  }
  
  .menu-check-method:checked::before {
    background-color: black;
  }
  
  .checkout-form-item span {
    font-family: var(--font-goudy);
  }
  
  
  
  
  
  /* Utilities */
  .inverted-radius-top-right {
    position: absolute;
    left: 100%;
    top: 0;
    width: 30px;
    height: 30px;
    box-shadow: -15px -12px 0px #0F110C;
    border-radius: 50%;
    background-color: transparent;
  }
  
  .since-inverted-radius-right {
    position: absolute;
    bottom: 100%;
    right: 0;
    width: 30px;
    height: 30px;
    box-shadow: 13px 13px 0px #0F110C;
    border-radius: 50%;
    background-color: transparent;
  }
  
  
  
  .checkout-form-item input {
    background-color: var(--color-primary);
    border-radius: 8px;
    min-height: 45px;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
    border: none;
    font-style: normal;
  }
  
  .checkout-form-desc {
    font-size: 15px;
    line-height: calc(18 / 15);
    color: rgba(255, 252, 244, 0.6);
  }
  
  
  
  /* Components */
  .banner-item-image {
    border-radius: 12px;
    overflow: hidden;
    min-height: inherit;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transform: scale(1.002);
  }
  
  .radio-field label.active>div>div {
    background-color: #000;
  }
  
  .disabled-label {
    opacity: 0.5;
  }
  
  
  
  
  .banner-item-content {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
  }
  
  .banner-item-content.active,
  .swiper-slide-active .banner-item-content {
    opacity: 1;
    transform: translateY(0);
  }
  
  input {
    outline: none;
  }
  
  .quantity-product::-webkit-outer-spin-button,
  .quantity-product::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  .quantity-product {
    -moz-appearance: textfield;
  }
  .checkout-banner {
    overflow: hidden;
  }
  .checkout-banner .banner-item-content {
    opacity: 1;
    transform: translateY(0px);
  }
  
  /* Ẩn icon lịch cho Chrome, Safari, Edge */
  .calendar-item::-webkit-calendar-picker-indicator {
    filter: invert(1);
  }
  
  .checkout-form-item-booking {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .checkout-form-item-booking span {
    font-style: italic;
    font-size: 18px;
    line-height: calc(25 / 18);
  }
  
  .checkout-form-item-booking input {
    background-color: var(--color-primary);
    border-radius: 8px;
    height: 45px;
    padding: 0 16px;
    font-size: 15px;
    font-style: normal;
    min-width: 100%;
    border: 1px solid transparent
  }
  
  .checkout-form-item-booking input:focus {
    border: 1px solid #fff;
  }
  
  .header-language-dropdown {
    transition: all 0.3s ease;
  }
  
  .header-language-dropdown.active {
    opacity: 1;
    visibility: visible;
  }
  
  .header-language-dropdown span {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .header-language-dropdown span img {
    width: 32px;
  }
  
  .header-language-dropdown span.active:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #5CB338;
  }
  
  
  
  .product-item-image img {
    border-radius: 8px;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
  }
  
  .product-slider-inner {
    overflow-y: auto;
    padding: 5px;
  }
  
  .product-slider-inner::-webkit-scrollbar {
    width: 5px;
  }
  
  .product-slider-inner::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }
  
  .product-slider-inner::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
  }
  
  .product-slider-inner::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  
  .order-complete-98s {
    padding-top: 100px;
    height: calc(100vh - 24px);
  }
  .banner-slider .swiper-slide {
    height: auto;
    overflow: hidden;
  }
  
  @media (min-width: 1024px) {
    .container-custom {
      padding-left: 30px;
      padding-right: 30px;
    }
  
    .product-item-title {
      font-size: 20px;
    }
  }
  
  @media (max-width: 1365px) {
    .checkout-form {
      display: flex;
      flex-direction: column;
    }
  }
  
  @media screen and (min-width: 768px) {
    .banner-item-content {
      position: absolute;
      left: 50px;
      bottom: 50px;
      background-color: rgba(15, 17, 12, 0.8);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      padding: 24px;
      max-width: 440px;
    }
  
    .product-item-desc p:last-child {
      justify-content: flex-start;
    }
  
    .product-item-desc {
      padding-right: 10px;
      font-size: 14px;
    }
  
    .product-item-title {
      font-size: 16px;
    }
  
    .product-item-image {
      max-width: 110px;
    }
  }
  
  @media (max-width: 767px) {
    .product-item-image {
      max-width: 100px;
    }
  
    .product-item-add {
      width: 30px;
      height: 30px;
    }
  
    .banner-slider .swiper-slide button {
      position: absolute;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
    }
  
    .product-item-image img {
      aspect-ratio: 16/9;
    }
  
    .popup-cart {
      transform: translateX(100%);
    }
  
    .popup-cart.active {
      transform: translateX(0px);
    }
  
    .total-cart.active {
      display: flex;
      right: 0;
      bottom: -1px;
      padding-right: 12px;
    }
  
    .order-complete-98s {
      padding: 0px;
    }
  
    #nav-bar-98s {
      font-size: 14px;
    }
  
    .checkout-banner button {
      position: absolute;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
    }
  
    .popup-cart>div {
      -ms-overflow-style: none;
      /* IE and Edge */
      scrollbar-width: none;
      /* Firefox */
    }
  
    .popup-cart>div::-webkit-scrollbar {
      display: none;
    }
  
    .place-order-cart {
      padding: 8px 12px;
    }
    .banner-slider .swiper-slide button, .checkout-banner button {
      padding: 8px 12px;
      border-radius: 6px;
      font-size: 14px;
    }
    .product-slider-inner {
      padding-bottom: 60px;;
    }
  
  }
  
  @media (max-width: 374px) {
    #nav-bar-98s {
      font-size: 12px;
    }
  }
  
  @supports (-webkit-hyphens: none) and (not (-ms-ime-align: auto)) {
    @media (max-width: 768px) {
      .calendar-item {
        min-width: 50%;
      }
  
      .calendar-item.vld-date {
        width: 100px;
      }
  
      .calendar-item.vld-time {
        width: 40px;
      }
      .calendar-item.vld-start_date {
        width: 100px;
      }
  
      .calendar-item.vld-start_time {
        width: 40px;
      }
    }
  }
  
  .popup-cart .btn-close-cart ~ div{
     overflow-x: hidden;
  }