/* --- HERO SLIDER (SECTION 1) --- */
.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(to right,
      var(--color-left-slide),
      var(--color-right-slide));
  overflow: hidden;
}

.slider::before {
  position: absolute;
  width: 50%;
  height: 100vh;
  content: "";
  top: 0;
  left: 0;
  background-color: var(--color-before-slide);
}

/* --- HEADER STYLES MOVED TO header_footer.css --- */

/* SIDEBAR STYLES */
/* --- SIDEBAR STYLES MOVED TO sidebar_mobile.css --- */

.hero-section-title {
  position: absolute;
  top: 20%;
  left: 5%;
  text-align: left;
  color: #fff;
  font-size: 150px;
  width: 40%;
  font-family: "Pacifico", cursive;
  text-shadow: 3px 5px 0px var(--color-title-shadow);
  line-height: 0.5em;
  transform: rotate(-5deg);
}

.hero-section-images {
  position: absolute;
  bottom: 0%;
  left: 50%;
  --rotate: 0deg;
  transform: translate(-50%, 50%) rotate(var(--rotate));
  width: 1300px;
  height: 1300px;
  border-radius: 50%;
  transition: transform 0.5s ease-in-out;
  outline-offset: -100px;
}

.hero-section-images .section-image-item {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  rotate: calc(-60deg * (var(--i) - 1));
}

.hero-section-images .section-image-item img {
  height: 420px;
  transition: transform 0.2s linear;
  will-change: transform;
}

.hero-section-content {
  color: #fff;
  position: absolute;
  top: 20%;
  left: 70%;
  text-align: justify;
  width: 350px;
}

.hero-section-content h1 {
  color: var(--color-title-slide);
  font-size: 2rem;
}

.hero-section-content .section-content-item-des {
  margin-top: 10px;
}

.hero-section-content button {
  margin-top: 30px;
  padding: 10px 30px;
  border-radius: 20px;
  background-color: var(--color-title-slide);
  color: #fff;
  border: none;
  float: right;
  cursor: pointer;
}

.hero-section-content .section-content-item {
  display: none;
}

.hero-section-content .section-content-item.active {
  display: block;
  z-index: 100;
}

@keyframes showContent {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section-content .section-content-item.active h1 {
  opacity: 0;
  animation: showContent 0.5s ease-in-out 1 forwards;
}

.hero-section-content .section-content-item.active .section-content-item-des {
  opacity: 0;
  animation: showContent 0.5s 0.3s ease-in-out 1 forwards;
}

.hero-section-content .section-content-item.active button {
  opacity: 0;
  animation: showContent 0.5s 0.6s ease-in-out 1 forwards;
}

#prev,
#next {
  position: absolute;
  border: none;
  top: 50%;
  left: 250px;
  font-size: 100px;
  font-family: cursive;
  background-color: transparent;
  color: #fff;
  font-weight: bold;
  opacity: 0.3;
  cursor: pointer;
  z-index: 50;
}

#next {
  left: unset;
  right: 250px;
}

#next:hover,
#prev:hover {
  opacity: 1;
}

/* --- OTHER SECTIONS --- */
.description-food-section {
  height: 70vh;
  background-color: var(--des-food-bg);
}

.description-food-section .container {
  height: 100%;
}

.description-food-section .container .description-food-section-wrapper {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.description-food-section .container .description-food-section-wrapper .img-section-description {
  flex-basis: 50%;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.description-food-section .container .description-food-section-wrapper .img-section-description img {
  width: 80%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  display: none;
  /* Hidden by default for GSAP animation screen size */
}

/* @media screen and (max-width: 1280px) {
  .description-food-section
    .container
    .description-food-section-wrapper
    .img-section-description
    img {
    display: block;
  }
} */

.description-food-section .container .description-food-section-wrapper .content-description-section {
  flex-basis: 50%;
  color: #fff;
}

.description-food-section .container .description-food-section-wrapper .content-description-section h2 {
  font-family: "Pacifico", cursive;
  font-size: 5vw;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 2vh;
}

/* --- THIRD SECTION (PRODUCTS) --- */
.best-seller-food-section {
  padding: 10vh 0;
  background-color: var(--best-seller-bg);
  min-height: 100vh;
  color: #fff;
}

.best-seller-food-section .best-seller-section-title {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 5vh;
  color: #fff;
  font-family: "Pacifico", cursive;
}

.best-seller-food-section .best-seller-section-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.best-seller-food-section .best-seller-product-card {
  background-color: var(--product-card-bg);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.best-seller-food-section .best-seller-product-card:hover {
  transform: translateY(-10px);
}

.best-seller-food-section .best-seller-product-card .badge {
  position: absolute;
  top: 15px;
  left: -35px;
  background-color: #a30000;
  color: white;
  padding: 5px 40px;
  font-size: 0.7rem;
  font-weight: 700;
  transform: rotate(-45deg);
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.best-seller-food-section .best-seller-product-card .wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #ff5e5e;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  transition: color 0.3s;
}

.best-seller-food-section .best-seller-product-card .wishlist:hover {
  color: #ff0000;
}

.best-seller-food-section .best-seller-product-card .best-seller-section-img-box {
  background-color: #f5f5f5;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-right-radius: 80px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.best-seller-food-section .best-seller-product-card .best-seller-section-img-box .best-seller-product-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}

.best-seller-food-section .best-seller-product-card .best-seller-section-product-info {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.best-seller-food-section .best-seller-product-card .best-seller-section-product-info h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

.best-seller-food-section .best-seller-product-card .best-seller-section-product-info .best-seller-section-price {
  font-size: 1.2rem;
  opacity: 0.9;
  margin: 0;
  color: #fff;
}

.best-seller-food-section .best-seller-product-card .best-seller-section-product-info .best-seller-section-rating-sold {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0;
}

.best-seller-food-section .best-seller-product-card .best-seller-section-product-info .best-seller-section-rating-sold .stars {
  color: #f5f5f5;
  font-size: 0.9rem;
  display: flex;
  gap: 3px;
}

.best-seller-food-section .best-seller-product-card .best-seller-section-product-info .best-seller-section-rating-sold .best-seller-section-sold {
  font-size: 0.9rem;
  color: #aaa;
}

.best-seller-food-section .best-seller-product-card .best-seller-section-product-info .best-seller-section-add-to-cart {
  background-color: #610c0c;
  color: white;
  border: 1.5px solid #8d1212;
  padding: 12px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  margin-top: 5px;
  font-family: inherit;
}

.best-seller-food-section .best-seller-product-card .best-seller-section-product-info .best-seller-section-add-to-cart:hover {
  background-color: #8d1212;
  transform: scale(1.02);
}

.best-seller-food-section .best-seller-product-card .best-seller-section-product-info .best-seller-section-add-to-cart i {
  font-size: 1rem;
}

/* --- FOURTH SECTION --- */
.section-combos-food {
  background-color: #fff;
}

.combos-banner {
  background-color: #552c10;
  color: #fff;
  padding: 40px 0;
}

.combos-banner .combos-swiper {
  width: 80vw;
  margin: auto;
  overflow: hidden;
}

.combos-banner .combo-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.combos-banner .combo-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  align-items: center;
  text-align: center;
}

.combos-banner .combo-item .combo-item-label {
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.9;
}

.combos-banner .combo-item .combo-item-label small {
  font-size: 0.8rem;
  margin-left: 5px;
}

.combos-banner .combo-item .combo-item-second-label {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.combos-banner .combo-item .combo-item-second-label .item-second-label-large {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: #f39c12;
}

.combos-banner .combo-item .combo-item-second-label .item-third-label-small {
  display: flex;
  flex-direction: column;
}

.combos-banner .combo-item .combo-item-second-label .item-third-label-small .item-label-small-first {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: #f39c12;
}

.combos-banner .combo-item .combo-item-second-label .item-third-label-small .item-label-small-second {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.8;
}

.combos-banner .combo-item.children .child-flex {
  display: flex;
  gap: 20px;
}

.combos-banner .combo-item.children .child-flex .c-price {
  display: flex;
  flex-direction: column;
}

.combos-banner .combo-item.children .child-flex .c-price .val {
  font-size: 2.5rem;
  font-weight: 900;
}

.combos-banner .combo-item.children .child-flex .c-price .val.orange {
  color: #f39c12;
}

.combos-banner .v-line {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
}

.choice-section {
  padding: 50px 0;
  background-color: #f1f1f1;
}

.choice-section .choice-title {
  text-align: center;
  font-size: 2.5rem;
  color: #552c10;
  margin-bottom: 40px;
}

.choice-section .choices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.choice-section .choice-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.choice-section .choice-item i {
  font-size: 2rem;
  color: #b88a44;
}

.choice-section .choice-item p {
  font-size: 0.9rem;
  font-weight: 700;
  color: #444;
  text-transform: uppercase;
}

/* --- FIFTH SECTION --- */
.product-category-section {
  padding: 60px 0;
  background-color: var(--category-bg);
  min-height: 100vh;
}

.product-category-section .product-category-container {
  margin: 0px 100px;
}

.product-category-section .product-category-main-layout {
  display: flex;
  gap: 30px;
}

.product-category-section .product-category-main-layout-sidebar {
  flex: 0 0 280px;
  background-color: #fff;
  border-radius: 10px 0 0 0;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: fit-content;
}

.product-category-section .product-category-main-layout-sidebar .main-layout-sidebar-header {
  background-color: var(--filter-bar-bg);
  color: #fff;
  padding: 15px 20px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-category-section .product-category-main-layout-sidebar .main-layout-category-list {
  padding: 10px 0;
}

.product-category-section .product-category-main-layout-sidebar .main-layout-category-list li {
  padding: 15px 20px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  border-left: 4px solid transparent;
}

.product-category-section .product-category-main-layout-sidebar .main-layout-category-list li i {
  font-size: 0.8rem;
  opacity: 0;
  transition: 0.3s;
}

.product-category-section .product-category-main-layout-sidebar .main-layout-category-list .category-list:hover,
.product-category-section .product-category-main-layout-sidebar .main-layout-category-list .category-list.active {
  background-color: #f9f9f9;
  color: #552c10;
  font-weight: 700;
  border-left-color: #b88a44;
}

.product-category-section .product-category-main-layout-sidebar .main-layout-category-list .category-list:hover i,
.product-category-section .product-category-main-layout-sidebar .main-layout-category-list .category-list.active i {
  opacity: 1;
  transform: translateX(-5px);
}

.product-category-section .product-area-main-layout {
  flex: 1;
}

.product-category-section .product-area-main-layout .product-area-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--filter-bar-bg);
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  margin-bottom: 30px;
}

.product-category-section .product-area-main-layout .product-area-filter-bar .product-area-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.product-category-section .product-area-main-layout .product-area-filter-bar .product-area-bar-left .sec-label {
  font-weight: 700;
  font-size: 0.9rem;
}

.product-category-section .product-area-main-layout .product-area-filter-bar .product-area-bar-left .search-container {
  position: relative;
}

.product-category-section .product-area-main-layout .product-area-filter-bar .product-area-bar-left .search-container .product-area-search {
  padding: 8px 15px 8px 35px;
  border-radius: 20px;
  border: none;
  font-size: 0.85rem;
  width: 250px;
}

.product-category-section .product-area-main-layout .product-area-filter-bar .product-area-bar-left .search-container .product-area-search:focus {
  outline: none;
}

.product-category-section .product-area-main-layout .product-area-filter-bar .product-area-bar-left .search-container i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 0.9rem;
}

.product-category-section .product-area-main-layout .product-area-filter-bar .product-area-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.product-category-section .product-area-main-layout .product-area-filter-bar .product-area-bar-right .product-area-bar-right-filter-group {
  display: flex;
  gap: 10px;
}

.product-category-section .product-area-main-layout .product-area-filter-bar .product-area-bar-right .product-area-bar-right-filter-group .bar-right-filter-btn {
  background: #fff;
  border: none;
  padding: 6px 15px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  transition: 0.3s;
}

.product-category-section .product-area-main-layout .product-area-filter-bar .product-area-bar-right .product-area-bar-right-filter-group .bar-right-filter-btn.active,
.product-category-section .product-area-main-layout .product-area-filter-bar .product-area-bar-right .product-area-bar-right-filter-group .bar-right-filter-btn:hover {
  background-color: #eee;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-category-section .product-area-main-layout .product-area-filter-bar .product-area-bar-right .page-info {
  font-size: 0.85rem;
  opacity: 0.9;
}

.product-category-section .product-area-main-layout .grid-product-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  background-color: var(--filter-bar-bg);
  padding: 30px;
  /* border-radius: 15px; */
}

/* Product Card Styling */
.p-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.p-card .p-wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #ff4757;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
}

.p-card .p-img {
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f8f8;
  border-radius: 50px;
  margin-bottom: 15px;
}

.p-card .p-img img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}

.p-card .p-details .p-name {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  height: 2.4em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
}

.p-card .p-details .p-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}

.p-card .p-details .p-meta .meta-item {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: center;
  border-bottom: 1px dashed #eaeaea;
  padding-bottom: 5px;
}

.p-card .p-details .p-meta .meta-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Đảo vị trí: Loại lên trên, Giá xuống dưới */
.p-card .p-details .p-meta .meta-item:nth-child(1) {
  order: 2;
  /* Giá */
}

.p-card .p-details .p-meta .meta-item:nth-child(2) {
  order: 1;
  /* Loại */
}

.p-card .p-details .p-meta .meta-item .label {
  font-size: 0.75rem;
  color: #999;
  font-weight: 700;
}

.p-card .p-details .p-meta .meta-item .value {
  font-size: 1rem;
  font-weight: 700;
  color: #552c10;
}

.p-card .p-details .p-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.p-card .p-details .p-rating .stars {
  color: #f1c40f;
  font-size: 0.75rem;
  display: flex;
  gap: 2px;
}

.p-card .p-details .p-rating .sold-count {
  font-size: 0.75rem;
  color: #999;
  font-weight: 600;
}

.p-card .p-details .p-actions {
  display: flex;
  gap: 10px;
}

.p-card .p-details .p-actions .btn-detail {
  flex: 1;
  background-color: #8d1212;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-card .p-details .p-actions .btn-detail:hover {
  background-color: #a31515;
}

.p-card .p-details .p-actions .btn-cart {
  width: 40px;
  height: 40px;
  background-color: #8d1212;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: 0.3s;
}

.p-card .p-details .p-actions .btn-cart:hover {
  background-color: #a31515;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

.pagination button {
  padding: 8px 12px;
  border: none;
  background: #222;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
}

.pagination button:hover {
  background: #ff6600;
}

#pageNumbers span {
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 5px;
}

#pageNumbers .active {
  background: #ff6600;
  color: white;
}

/* Section 6 & 7 + Footer */
.booking-section,
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fef7f0 0%, #fff8f2 100%);
}

.booking-section {
  background: linear-gradient(135deg, #fef7f0 0%, #fff8f2 100%);
}

.testimonials-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.booking-section-title,
.testimonials-section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #552c10;
  text-align: center;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.booking-section-subtitle {
  color: #666;
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.1rem;
  font-style: italic;
}

/* Booking Form */
.booking-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.booking-form-group {
  display: flex;
  flex-direction: column;
}

.booking-form-group.full-width {
  grid-column: 1 / -1;
}

.booking-form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.booking-form-group input,
.booking-form-group select,
.booking-form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}

.booking-form-group input:focus,
.booking-form-group select:focus,
.booking-form-group textarea:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.booking-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.cta-button {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  align-self: center;
  margin-top: 10px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.cta-button:active {
  transform: translateY(0);
}

/* Testimonials Swiper */
.testimonial-swiper {
  width: 100%;
  padding: 50px 0 80px !important;
  overflow: visible;
  /* Allow slides to be seen when entering/exit */
}

.testimonial-swiper .swiper-slide {
  height: auto;
  opacity: 0.4;
  transition: all 0.5s ease;
  transform: scale(0.85);
}

.testimonial-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.swiper-slide {
  max-width: 100%;
}

.testimonial-item {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-item::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  color: rgba(255, 107, 53, 0.2);
  font-family: serif;
  line-height: 1;
}

/* Pagination Styling */
.testimonial-swiper .swiper-pagination-bullet {
  background: #ff6b35;
  width: 12px;
  height: 12px;
  opacity: 0.3;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 10px;
}

.testimonial-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
  padding-left: 40px;
}

.testimonial-author h4 {
  margin: 0 0 5px;
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
}

/* --- FOOTER STYLES MOVED TO header_footer.css --- */

/* --- CHAT STYLES MOVED TO chat_widget_chat_modal.css --- */

.chat-input button:hover {
  background: #3d1f0a;
}

footer {
  margin-top: auto;
  background-color: #f8f9fa;
  padding: 1rem;
  text-align: center;
}

/* Responsive for Hero Slider (Section 1) */
@media screen and (max-width: 1440px) {
  .hero-section-title {
    font-size: 110px;
    top: 15%;
  }

  .hero-section-content {
    left: 65%;
    width: 300px;
  }

  .hero-section-images {
    width: 1100px;
    height: 1100px;
  }

  .hero-section-images .section-image-item img {
    height: 350px;
  }

  #prev {
    left: 100px;
    font-size: 80px;
  }

  #next {
    right: 100px;
    font-size: 80px;
  }
}

@media screen and (max-width: 1280px) {
  #flying-cookie {
    display: none !important;
  }

  .description-food-section .container .description-food-section-wrapper .img-section-description img {
    display: block;
    /* Show static image on small screens where GSAP animation is off */
  }

  /* Section 5 Responsive */
  .product-category-section .product-category-container {
    margin: 0 30px;
  }

  .product-category-section .product-category-main-layout {
    gap: 20px;
  }

  .product-category-section .product-category-main-layout-sidebar {
    flex: 0 0 230px;
  }

  .product-category-section .product-area-main-layout .product-area-filter-bar {
    padding: 12px 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .product-category-section .product-area-main-layout .product-area-filter-bar .product-area-bar-left,
  .product-category-section .product-area-main-layout .product-area-filter-bar .product-area-bar-right {
    width: 100%;
    justify-content: space-between;
  }

  .product-category-section .product-area-main-layout .product-area-filter-bar .product-area-bar-left .search-container .product-area-search {
    width: 350px;
  }

  .product-category-section .product-area-main-layout .grid-product-container {
    padding: 20px;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
  }

  .product-category-section .product-area-main-layout .product-area-filter-bar .product-area-bar-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .p-card {
    padding: 15px;
  }

  .p-card .p-img {
    height: 160px;
  }

  @media (max-width: 768px) {
    .testimonial-item {
      padding: 20px;
      /* giảm từ 40 xuống */
    }
  }

  /* Testimonials Swiper */
  .testimonial-swiper {
    overflow: hidden;
  }
}

@media screen and (max-width: 1024px) {
  /* .slider {
    height: 50vh;
  } */

  .hero-section-title {
    font-size: 90px;
    top: 25%;
    width: 40%;
  }

  .hero-section-content {
    left: 60%;
    top: 15%;
    width: 35%;
  }

  .hero-section-images {
    width: 900px;
    height: 900px;
  }

  .hero-section-images .section-image-item img {
    height: 300px;
  }

  .description-food-section {
    height: 40vh;
  }

  #prev {
    left: 50px;
    font-size: 70px;
  }

  #next {
    right: 50px;
    font-size: 70px;
  }

  .description-food-section {
    height: 70vh;
  }
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0;
  }

  .main-header {
    width: 100vw;
    padding: 0 20px;
  }

  .main-header.scrolled {
    width: 95%;
    margin-top: 10px;
    padding: 0 20px;
  }

  .navbar-header {
    padding: 15px 0 !important;
  }

  .menu-left,
  .menu-right {
    display: none !important;
  }

  .mobile-actions {
    display: flex;
  }

  .main-header .logo a {
    font-size: 2.2rem;
  }

  .navbar-header {
    justify-content: space-between;
  }

  .main-header.scrolled .navbar-header {
    padding: 0 !important;
  }

  #prev,
  #next {
    top: 40%;
    font-size: 60px;
  }

  #prev {
    left: 20px;
  }

  #next {
    right: 20px;
  }

  .best-seller-food-section .best-seller-section-products-grid {
    gap: 20px;
  }

  /* Section 5 Responsive 768px */
  .product-category-section .product-category-container {
    margin: 0 15px;
  }

  .product-category-section .product-category-main-layout {
    flex-direction: column;
    gap: 20px;
  }

  .product-category-section .product-category-main-layout-sidebar {
    flex: 1 1 100%;
    border-radius: 10px;
  }

  .product-area-main-layout {
    width: 100%;
  }

  .product-category-section .product-area-main-layout .product-area-filter-bar {
    padding: 10px;
  }

  /* .product-category-section
    .product-area-main-layout
    .product-area-filter-bar
    .product-area-bar-left {
    flex-direction: column;
    align-items: flex-start;
  } */

  .product-category-section .product-area-main-layout .product-area-filter-bar .product-area-bar-right .product-area-bar-right-filter-group {
    flex-wrap: wrap;
    justify-content: center;
  }

  .product-category-section .product-area-main-layout .grid-product-container {
    padding: 15px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
  }

  /* Chat Responsive moved to chat_widget_chat_modal.css */
}

@media screen and (max-width: 600px) {
  /* Header Responsive moved to header_footer.css */

  .hero-section-title {
    font-size: 55px;
    top: 30%;
  }

  .hero-section-content {
    top: 30%;
  }

  .hero-section-content h1 {
    color: var(--color-title-slide);
    font-size: 2rem;
  }

  .hero-section-content .section-content-item-des {
    margin-top: 10px;
  }

  .hero-section-images {
    width: 550px;
    height: 550px;
    bottom: 15%;
  }

  /* Chỉ hiện 1 sản phẩm ở giữa, ẩn các sản phẩm xung quanh */
  .hero-section-images .section-image-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
  }

  .hero-section-images .section-image-item.active {
    opacity: 1;
    visibility: visible;
  }

  .hero-section-images .section-image-item img {
    height: 220px;
  }

  #prev,
  #next {
    font-size: 45px;
    top: 60%;
  }

  #prev {
    left: 10px;
  }

  #next {
    right: 10px;
  }

  .hero-section-content h1 {
    font-size: 1.6rem;
  }

  .hero-section-content .section-content-item-des {
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  #section-description-desc {
    display: none !important;
  }

  .product-category-section .product-area-main-layout .product-area-filter-bar .product-area-bar-left .search-container .product-area-search {
    max-width: 300px;
  }

  .booking-form-row {
    grid-template-columns: 1fr;
  }

  /* Chat Widget Position moved to chat_widget_chat_modal.css */
}

@media screen and (max-width: 430px) {
  /* Logo Responsive moved to header_footer.css */

  .container {
    padding: 0 15px;
  }

  .description-food-section .container .description-food-section-wrapper {
    flex-direction: column;
  }

  .choice-section .choice-title {
    font-size: 2rem;
  }

  .booking-form-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .best-seller-food-section .best-seller-section-title {
    font-size: 50px;
  }
}