/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER & NAVIGATION ================= */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
}

.logo span {
  color: #ff6b6b;
}

/* បញ្ជី Menu ទូទៅ (Home, Menu...) */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.navbar ul li a {
  display: inline-block;
  padding: 6px 20px;
  border: 2px solid #dc3545;
  /* បន្ទាត់ប្រអប់ពណ៌ក្រហម */
  color: #dc3545;
  /* អក្សរពណ៌ក្រហម */
  text-decoration: none;
  /* លុបបន្ទាត់ពីក្រោមអក្សរ */
  font-weight: 600;
  border-radius: 50px;
  /* ធ្វើឱ្យជ្រុងប្រអប់មូលស្អាត */
  transition: all 0.3s ease;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  background-color: #dc3545;
  /* ដូរផ្ទៃខាងក្នុងទៅជាពណ៌ក្រហម */
  color: white !important;
  /* ដូរអក្សរទៅជាពណ៌ស */
  box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3);
  /* បន្ថែមស្រមោលតិចៗ */
}

/* ផ្នែកខាងស្តាំ៖ រួមបញ្ចូលកន្ត្រក និងប៊ូតុងចុចផ្សេងៗ */
.right-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* ប៊ូតុង Login ដាច់ដោយឡែកដែលមានប្រអប់ព័ទ្ធជុំវិញ */
.login-btn-box {
  display: inline-block;
  padding: 6px 22px !important;
  border: 2px solid #ff6b6b !important;
  color: #ff6b6b !important;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  background: transparent !important;
  transition: all 0.3s ease-in-out;
}

.login-btn-box:hover {
  background: #ff6b6b !important;
  color: white !important;
  box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

/* កន្ត្រកទំនិញ */
.cart-icon {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.2s ease;
}

.cart-icon.bounce {
  animation: cartBounce 0.3s ease-in-out;
}

@keyframes cartBounce {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4) rotate(-10deg);
  }

  100% {
    transform: scale(1);
  }
}

#cart-count {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(220, 53, 69, 0.4);
}

/* ប៊ូតុង Hamburger Menu (☰) លាក់ខ្លួនសិននៅលើ PC */
#hamburger-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/* ================= LOGIN MODAL STYLES ================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.login-card {
  background: #fff;
  padding: 35px;
  width: 100%;
  max-width: 420px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  text-align: center;
  transform: translateY(-20px);
  transition: transform 0.3s ease-in-out;
}

.modal-overlay.open .login-card {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #ccc;
  cursor: pointer;
  transition: 0.2s;
}

.close-modal:hover {
  color: #ff6b6b;
}

.login-card h2 {
  font-size: 26px;
  margin-bottom: 5px;
  color: #444;
  font-weight: 700;
}

.login-card h2 span {
  color: #ff6b6b;
}

.login-card p {
  color: #777;
  font-size: 14px;
  margin-bottom: 20px;
}

.modal-input-box {
  margin-bottom: 15px;
  text-align: left;
}

.modal-input-box label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #ff6b6b;
  margin-bottom: 6px;
}

.modal-input-box input {
  width: 100%;
  padding: 12px;
  background: #fff5f5;
  border: 1.5px solid #ffb3b3;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
  color: #333;
}

.modal-input-box input:focus {
  border-color: #ff6b6b;
  background: #fff;
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.3);
}

.login-submit-btn {
  background: #ff6b6b;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 5px;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.login-submit-btn:hover {
  background: #ff5252;
}

.or-separator {
  text-align: center;
  margin: 18px 0;
  position: relative;
}

.or-separator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #eee;
  z-index: 1;
}

.or-separator span {
  background-color: #fff;
  padding: 0 15px;
  color: #777;
  font-size: 13px;
  position: relative;
  z-index: 2;
}

.social-login-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: white;
  transition: background 0.3s ease;
}

.social-btn.facebook {
  background-color: #1877f2;
}

.social-btn.facebook:hover {
  background-color: #145dbf;
}

.social-btn.google {
  background-color: #ea4335;
}

.social-btn.google:hover {
  background-color: #c93022;
}

.social-btn.outlook {
  background-color: #0078d4;
}

.social-btn.outlook:hover {
  background-color: #005a9e;
}

.qr-login-box {
  text-align: center;
  background: #fdfdfd;
  padding: 12px;
  border-radius: 10px;
  border: 1px dashed #ffb3b3;
}

.qr-login-box img {
  width: 110px;
  height: 110px;
  margin-bottom: 6px;
}

.qr-login-box p {
  font-size: 12px;
  color: #666;
  margin: 0;
}

.modal-footer-text {
  margin-top: 20px;
  font-size: 14px;
  color: #666;
}

.modal-footer-text a {
  color: #ff6b6b;
  text-decoration: none;
  font-weight: 600;
}

.modal-footer-text a:hover {
  text-decoration: underline;
}

/* ================= HERO CONTAINER (3D DRINK) ================= */
.hero {
  min-height: 85vh;
  /* ប្រើពណ៌ផ្ទៃខាងក្រោយបៃតងខ្ចីស្រាលបែបម៉ត់ចត់ និងមានស្ទាយល៍ */
  background: linear-gradient(rgba(243, 248, 244, 0.9), rgba(243, 248, 244, 0.9)),
    url('https://images.unsplash.com/photo-1515694346937-94d85e41e6f0?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
}

/* គ្រប់គ្រងផ្នែកខាងឆ្វេង */
.hero-left {
  flex: 1.2;
  text-align: left;
}

.hero-left .sub-title {
  color: #ff6b6b;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-size: 14px;
}

.hero-left h1 {
  font-size: 46px;
  color: #2d4a22;
  /* ពណ៌បៃតងក្រម៉ៅបែបស្លឹកតែ */
  line-height: 1.2;
  margin-bottom: 15px;
  font-weight: 800;
}

.hero-left .description {
  color: #666;
  font-size: 15px;
  margin-bottom: 25px;
  max-width: 500px;
  line-height: 1.6;
}

/* រចនាប្រអប់ SEARCH BOX ឱ្យនៅខាងឆ្វេងស្អាតសក្ដិសមនឹងកុំព្យូទ័រ */
.hero-left .search-box {
  display: flex;
  background: white;
  padding: 6px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 420px;
  margin-bottom: 25px;
  /* បង្កើតគម្លាតពីប៊ូតុងខាងក្រោម */
  border: 1px solid #e2eee4;
}

.hero-left .search-box input {
  flex: 1;
  border: none;
  padding: 10px 20px;
  outline: none;
  font-size: 15px;
  background: transparent;
}

.hero-left .search-box button {
  padding: 10px 22px;
  border: none;
  background: #ff6b6b;
  color: white;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.hero-left .search-box button:hover {
  background: #ff5252;
}

/* ផ្នែកប៊ូតុងពីរខាងក្រោម */
.hero-buttons {
  display: flex;
  gap: 15px;
}

.order-btn {
  background: #ff6b6b;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.explore-btn {
  border: 2px solid #2d4a22;
  color: #2d4a22;
  padding: 11px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

.order-btn:hover {
  background: #ff5252;
  transform: translateY(-2px);
}

.explore-btn:hover {
  background: #2d4a22;
  color: white;
  transform: translateY(-2px);
}

/* គ្រប់គ្រងរូបភាព 3D ខាងស្តាំ */
.hero-right {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-3d {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  /* បន្ថែមចលនាអណ្តែត 3D ដូចមុន */
  animation: float3D 4s ease-in-out infinite;
}

@keyframes float3D {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* ================= MENU ================= */
.menu {
  padding: 80px 0;
}

.categories {
  text-align: center;
  margin-bottom: 40px;
}

.categories button {
  padding: 8px 18px;
  margin: 5px;
  border: none;
  background: #eee;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.categories button:hover,
.categories .active {
  background: #ff6b6b;
  color: white;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.menu-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.menu-item:hover {
  transform: translateY(-5px);
}

.image-box {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.menu-item:hover .image-box img {
  transform: scale(1.06);
}

.discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff6b6b;
  color: white;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 20px;
  z-index: 2;
}

.menu-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.rating {
  font-size: 14px;
  margin: 5px 0 12px 0;
  color: #ffb100;
}

.price-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.price {
  font-weight: 600;
  color: #ff6b6b;
  font-size: 18px;
}

.cart-btn {
  background: #ff6b6b;
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.cart-btn:hover {
  background: #ff5252;
}

/* ================= DELIVERY SECTION ================= */
.delivery {
  padding: 80px 0;
  text-align: center;
}

.delivery-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.step {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 220px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  text-align: center;
}

.step:hover {
  transform: translateY(-8px);
}

.step-icon {
  font-size: 35px;
  margin-bottom: 10px;
}

.delivery-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.delivery-stats .stat-box {
  background: white;
  padding: 25px 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.delivery-stats .stat-box:hover {
  transform: translateY(-8px);
}

.delivery-stats h3 {
  font-size: 30px;
  color: #ff6b6b;
}

.delivery-stats p {
  font-size: 14px;
  margin-top: 5px;
  color: #666;
}

.delivery-map {
  margin-top: 50px;
}

.delivery-map iframe {
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 800px;
  border: none;
}

/* ================= ABOUT SECTION ================= */
.about {
  padding: 80px 0;
  background: white;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  text-align: left;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
}

.about-content {
  flex: 1;
}

.about-title {
  font-size: 38px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
}

.about-title span {
  color: #ff6b6b;
}

.why-choose {
  font-size: 22px;
  color: #444;
  margin-bottom: 15px;
}

.about-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 15px;
}

/* ================= CONTACT SECTION ================= */
.contact {
  padding: 80px 7%;
  background: #fff;
}

.contact .title {
  text-align: center;
  font-size: 35px;
  margin-bottom: 30px;
  font-weight: 700;
}

.contact .title span {
  color: #ff6b6b;
  border-bottom: 3px solid #ff6b6b;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-image {
  flex: 1 1 400px;
  text-align: center;
}

.contact-image img {
  width: 100%;
  max-width: 450px;
}

.contact-form {
  flex: 1 1 500px;
  background: #fcfcfc;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.input-group {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.input-box {
  flex: 1;
}

.input-box label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
  text-align: left;
}

.input-box input,
.input-box textarea {
  width: 100%;
  padding: 12px;
  background: #f3f3f3;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.input-box input:focus,
.input-box textarea:focus {
  border-color: #ff6b6b;
  background: #fff;
}

.send-btn {
  background: #ff5252;
  color: #fff;
  padding: 12px 35px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  margin-top: 10px;
}

.send-btn:hover {
  background: #e03e3e;
}

/* ================= 📱 MOBILE RESPONSIVENESS (ជួសជុលពេញលេញ) ================= */
@media (max-width: 768px) {

  /* រៀបចំ Header ឱ្យរត់ជួរដេកតែមួយលើទូរស័ព្ទ កុំឱ្យធ្លាក់ជួរ */
  .nav-container {
    padding: 12px 20px;
    width: 100%;
  }

  /* បង្ហាញប៊ូតុង Hamburger ☰ */
  #hamburger-btn {
    display: block;
  }

  /* 💡 លាក់របារ Menu ចាស់ ហើយរៀបវាជា Dropdown បញ្ឈរ (បើកពេលចុច ☰) */
  .navbar {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 999;
  }

  /* ពេលមាន Class active (ចុចបើកតាម JS) វានឹងលោតចេញមក */
  .navbar.active {
    display: block;
  }

  .navbar ul {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .navbar ul li {
    width: 100%;
    text-align: center;
  }

  .navbar ul li a {
    width: 100%;
    padding: 8px 0;
  }

  /* ផ្នែក Hero Layout ឆ្វេងស្តាំ បង្វិលមកលើក្រោមវិញ */
  .hero {
    padding: 40px 20px;
  }

  .hero-wrapper {
    flex-direction: column-reverse;
    /* រូបភាពភេសជ្ជៈឡើងទៅលើ អក្សរចុះមកក្រោម */
    text-align: center;
    gap: 30px;
  }

  .hero-left {
    text-align: center;
  }

  .hero-left h1 {
    font-size: 32px;
  }

  .hero-left .search-box {
    margin: 0 auto 25px auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-img-3d {
    max-width: 280px;
  }

  /* ផ្នែកផ្សេងៗទៀត */
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-title {
    font-size: 30px;
  }

  .input-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .login-card {
    padding: 25px 15px;
    width: 92%;
  }
}

/* ================= TOAST NOTIFICATION STYLES ================= */
#toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #333;
  /* ពណ៌ខ្មៅស្រអាប់ (វានឹងដូរជាពណ៌បៃតងស្វ័យប្រវត្តតាម JS ពេល Login ជោគជ័យ) */
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 3000;
  /* ឱ្យវាហោះនៅពីលើគេបង្អស់ */

  /* 💡 គន្លឹះធ្វើឱ្យវាលាក់ខ្លួនសិន និងបង្កើតចលនាពេលលោតចេញមក */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* ចលនាហោះឡើងបែបគងទាក់ទាញ */
}

/* 💡 នៅពេលចុច Add to Cart កូដ JavaScript នឹងថែម Class .show នេះដើម្បីបង្ហាញរូបរាង */
#toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* ================= 🛒 CART SIDEBAR STYLES ================= */
.cart-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}

.cart-sidebar-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -350px; /* លាក់ខ្លួននៅខាងស្តាំសិន */
  width: 350px;
  height: 100%;
  background: white;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: 0.3s ease-in-out;
}

.cart-sidebar-overlay.open .cart-sidebar {
  right: 0; /* រុញចេញមកវិញពេលបើក */
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 { font-size: 18px; color: #333; }
.close-cart { font-size: 28px; cursor: pointer; color: #aaa; }
.close-cart:hover { color: #ff6b6b; }

.cart-items-list {
  padding: 20px;
  flex: 1;
  overflow-y: auto; /* បើអាយថេមច្រើន វាដោលចុះក្រោម */
}

.empty-cart-text {
  text-align: center;
  color: #999;
  margin-top: 30px;
  font-size: 14px;
}

/* រចនាអាយថេមទំនិញក្នុងកន្ត្រក */
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f9f9f9;
}

.cart-item-name {
  font-size: 15px;
  font-weight: 500;
  color: #444;
}

/* 💡 ប៊ូតុងដកទំនិញចេញវិញ */
.remove-item-btn {
  background: #fff5f5;
  color: #ff6b6b;
  border: 1px solid #ffb3b3;
  padding: 4px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: 0.2s;
}

.remove-item-btn:hover {
  background: #ff6b6b;
  color: white;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid #eee;
}

.checkout-btn {
  width: 100%;
  background: #ff6b6b;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.checkout-btn:hover { background: #ff5252; }

/* ================= 📱 MOBILE RESPONSIVE FIX (NETLIFY LIVE) ================= */
@media (max-width: 768px) {
  
  /* 💡 បង្ខំឱ្យ Header បង្ហាញខ្លួនជានិច្ច និងមិនឱ្យហៀរគែមទូរស័ព្ទ */
  header {
    position: sticky;
    top: 0;
    background-color: #ffffff !important;
    width: 100% !important;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .nav-container {
    display: flex !important;
    flex-direction: row !important; /* បង្ខំឱ្យរត់ជួរដេកផ្ដេកជានិច្ច កុំឱ្យធ្លាក់ជួរ */
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 12px !important;
    width: 100% !important;
    box-sizing: border-box;
  }

  /* បង្រួមអក្សរ Logo ឱ្យតូចល្មមស្អាតលើអេក្រង់ទូរស័ព្ទ */
  .logo {
    font-size: 16px !important;
    white-space: nowrap; /* ការពារដាច់ខាតមិនឱ្យឈ្មោះហាងធ្លាក់បន្ទាត់ */
    flex: 1;
  }

  /* 💡 បើកទម្រង់ Menu ឱ្យបង្ហាញមកវិញជារាងប្រអប់មូលៗរត់ដេកផ្ដេក (Scroll ឆ្វេងស្តាំបាន) */
  .navbar {
    display: block !important; /* ⚠️ លុប display: none ចាស់ចោល */
    flex: 2;
    overflow-x: auto; /* បើ Menu វែងពេក អាចអូស (Scroll) ទៅឆ្វេងស្តាំបានមិនហៀរ */
    scrollbar-width: none; /* លាក់របារ Scroll កុំឱ្យអាក្រក់មើល */
  }
  
  .navbar::-webkit-scrollbar {
    display: none; /* លាក់របារ Scroll សម្រាប់ Chrome/Safari */
  }

  .navbar ul {
    display: flex !important;
    flex-direction: row !important; /* រៀបជួរដេកផ្ដេក */
    gap: 6px !important;            /* បង្រួមគម្លាតចន្លោះ Menu ឱ្យតូច */
    padding: 0 5px !important;
    margin: 0 !important;
  }

  /* បង្រួមប្រអប់អក្សរ Menu (Home, Menu...) ឱ្យតូចសមសួននឹងអេក្រង់ទូរស័ព្ទ */
  .navbar ul li a {
    padding: 4px 10px !important;
    font-size: 11px !important;
    border-radius: 30px !important;
    white-space: nowrap;
  }

  /* រៀបចំផ្នែកខាងស្តាំ (កន្ត្រក និងប៊ូតុង Login) ឱ្យនៅជាប់គ្នា */
  .right-nav {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-shrink: 0;
  }

  .cart-icon {
    font-size: 15px !important;
  }

  .login-btn-box {
    padding: 4px 10px !important;
    font-size: 11px !important;
    border-radius: 30px !important;
    white-space: nowrap;
  }
}