body {
  height: 100vh;
  background-color: #f2edae89;
  overflow: hidden;
  overflow-x: hidden;
  width: 100%;
}

.navbar {
  position: sticky;
  top: 0;
  background-color: #efca6c;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.lomihub-navbar-text {
  font-family: 'Lilita One', cursive;
  color: #1c1c1c;
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 2px;
}

.navbar-brand .logo {
  margin-right: 0 !important;
  height: 53px;
  border-radius: 53px;
  margin-left: -70px;
}

.navbar-nav.ms-auto,
#customerNavActions .nav-link,
#desktopSignInBtn,
#customerNavActions a.nav-link[href="customersignup.html"]  {
  padding-right: 8px;
  /* font-family: "Times New Roman", Times, serif; */
  font-size: 19px;
}
.navbar-nav .nav-link {
  font-family: 'Alfa Slab One', cursive;
  font-weight: 500;
  padding-right: 8px;
}

/* .navbar-nav .nav-link.active {
  color: #eaeaea;
  text-decoration: underline;
} */

.navbar-nav .nav-link:last-child {
  margin-right: 0;
  padding-right: 8px;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #f0f0f0;
  transition: background 0.2s, box-shadow 0.2s;
  margin: 0 4px;
  cursor: pointer;
}
.icon-circle:hover {
  background: #f7de5e;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile Side Navbar Styles */
.mobile-nav-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 190px;
  background: #efca6c;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
  z-index: 1051;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding-top: 1rem;
  overflow-y: auto;
  display: block;
}
.mobile-nav-sidebar .mobile-nav-header {
  display: flex;
  justify-content: flex-end;
  padding: 0 1rem 5rem 1rem;
}
.mobile-nav-sidebar .close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  line-height: 2;
}
.mobile-nav-sidebar ul.navbar-nav {
  padding-left: 0;
}
.mobile-nav-sidebar .nav-link {
  font-size: 1.1rem;
  color: #000000;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  font-family: "Times New Roman", Times, serif;
}
.mobile-nav-sidebar .nav-link:hover,
.mobile-nav-sidebar .nav-link.active {
  background: #f7de5e;
  color: #111111;
}
.mobile-nav-sidebar .icon-circle {
  margin-right: 10px;
}
.mobile-nav-sidebar.show {
  transform: translateX(0);
}
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1050;
  display: none;
}
.mobile-nav-backdrop.show {
  display: block;
}

/* Modal Styles */
.modal-dialog {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  pointer-events: none;
}
.modal-content {
  pointer-events: auto;
  background: #efca6c;
  border-radius: 2rem;
  padding: 2rem;
  max-width: 380px;
  width: 100%;
  text-align: center;
}

.modal-body {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 2rem;
  font-weight: 500;
}

.modal-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  border-top: none;
  align-items: center;
}

.btn-logout {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #514f4f;
  background-color: #f3f4f6;
  border: 2px solid #979797;
  border-radius: 5rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  user-select: none;
}

.btn-logout:hover,
.btn-logout:focus {
  background-color: #e6e2e2;
  color: #111827;
  text-decoration: none;
}

.btn-cancel {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #514f4f;
  background: transparent;
  border: 2px solid #979797;
  border-radius: 5rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}
.btn-cancel:hover,
.btn-cancel:focus {
  background-color: #efca6c;
  color: #374151;
}

@media (max-width: 480px) {
  .modal-content {
    padding: 1.5rem 1rem;
    max-width: 90vw;
  }
  .modal-title {
    font-size: 1.8rem;
  }
  .modal-body {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  .btn-logout {
    font-size: 1rem;
    padding: 0.7rem 1rem;
  }
  .btn-cancel {
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: column;
  }
  .navbar-nav .nav-link {
    margin-right: 0;
    margin-bottom: 0.5rem;
    justify-content: center;
  }
  .logo {
    margin-left: 10px;
  }
  .navbar-brand .logo {
    margin-left: 0;
  }
  .lomihub-navbar-text {
    font-size: 1.4rem;
    letter-spacing: 1.5px;
  }
  .modal-content {
    max-width: 320px;
    padding: 1.75rem 1.5rem;
  }
  .modal-title {
    font-size: 2.1rem;
  }
  .modal-body {
    font-size: 1rem;
    margin-bottom: 2.25rem;
  }
  .btn-logout {
    font-size: 1.05rem;
    padding: 0.75rem 1rem;
  }
  .btn-cancel {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    display: none !important;
  }
  .mobile-nav-sidebar {
    display: block;
  }
}
@media (min-width: 992px) {
  .mobile-nav-sidebar,
  .mobile-nav-backdrop {
    display: none !important;
  }
}

@media (max-width: 1200px) {
  .navbar-nav {
    flex-direction: row;
    justify-content: center;
  }
  .navbar-nav .nav-link {
    margin-right: 1rem;
  }
  .navbar-brand .logo {
    margin-left: 0;
  }
}

/* --- Sign In Modal Styles --- */
#loginModal .logo-container {
  width: 100%;
  text-align: center;
  margin-bottom: 0.5rem;
}
#loginModal .modal-dialog{
  margin-top: 6px; 
  display: flex; 
  align-items: flex-start; 
  justify-content: center;
  width: min(540px, 92vw);
}
#loginModal .logo-top {
  max-width: 110px;
  max-height: 110px;
  width: clamp(80px, 20vw, 120px);
  height: clamp(80px, 20vw, 120px);
  margin-top: -60px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
#loginModal .modal-content {
  border-radius: 1rem;
  background: #fff;
  max-width: 520px;
  width: 100%;
  margin: auto;
  padding: 0;
}
#loginModal .modal-body {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
  background: #fff;
  border-radius: 1rem;
}
#loginModal .title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
#loginModal input[type="email"],
#loginModal input[type="password"] {
  background: #fafafa;
  font-size: 1.1rem;
  border-radius: 10px;
  padding: 14px;
  border: 1px solid #ccc;
  margin-bottom: 0.5rem;
}
#loginModal input[type="password"],
#loginModal input[type="text"].password-toggle {
  background: #fafafa;
  font-size: 1.1rem;
  border-radius: 10px;
  padding: 14px 45px 14px 14px !important;
  border: 1px solid #ccc;
  margin-bottom: 0.5rem;
  width: 100% !important;
  box-sizing: border-box;
  line-height: 1.5;
}
#loginModal .btn-warning {
  background-color: #FFC107;
  color: #222;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 10px;
  border: none;
}
#loginModal .btn-warning:hover {
  background-color: #e0ac06;
}
#loginModal .text-warning,
#loginModal .text-warning:visited {
  color: #FFC107 !important;
}
#loginModal .g_id_signin {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}
#loginModal .g_id_signin > div,
#loginModal .g_id_signin iframe {
  width: 100% !important;
  display: block !important;
  min-width: 0 !important;
  max-width: 100% !important;
}
#loginModal .my-3 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
#loginModal #registerPrompt {
  color: #222;
  font-size: 1.1rem;
}
#loginModal #registerPrompt a {
  color: #FFC107 !important;
  font-weight: 500;
}
#loginModal .toggle-password {
  position: absolute;
  right: 20px;
  top: calc(50% - 30px);
  background: none !important;
  border: none !important;
  color: #666 !important;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
}

#loginModal .toggle-password:hover {
  color: #ffc107 !important;
}

#loginModal .toggle-password:focus {
  outline: none;
  box-shadow: none;
}

#loginModal .toggle-password i {
  font-size: 1.1rem;
  line-height: 1;
  vertical-align: middle;
}
#loginModal .form-control:focus {
  border-color: #FFC107;
  box-shadow: 0 0 0 0.2rem rgba(255,193,7,.15);
}
#loginModal .divider {
  margin: 1.5rem 0;
}
#loginModal .divider span {
  color: #888;
  font-size: 1rem;
  font-weight: 500;
}

/* Responsive for modal */
@media (max-width: 480px) {
  #loginModal .modal-content {
    max-width: 95vw;
    padding: 0.5rem;
  }
  #loginModal .logo-top {
    max-width: 80px;
    max-height: 80px;
  }
  #loginModal .modal-body {
    padding: 1.5rem 0.5rem;
  }
  #loginModal .title {
    font-size: 1.5rem;
  }
}


/* Sign up css */
/* --- Sign Up Modal Styles --- */
#signupModal .logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0rem;
  position: relative;
  padding: 0;
}
#signupModal .logo-top {
  max-width: 110px;
  max-height: 110px;
  width: clamp(80px, 20vw, 120px);
  height: clamp(80px, 20vw, 120px);
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  margin-top: -35px;
  position: relative;
  top: -15px;
  left: 0;
  right: 0;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
#signupModal .modal-content {
  border-radius: 1rem;
  background: #fff;
  max-width: 400px;
  margin: auto;
  padding: 0;
}
#signupModal .modal-body {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background: #fff;
  border-radius: 1rem;
}
#signupModal .title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
#signupModal input[type="text"],
#signupModal input[type="email"] {
  background: #fafafa;
  font-size: 1.1rem;
  border-radius: 10px;
  padding: 14px;
  border: 1px solid #ccc;
  margin-bottom: 0.5rem;
  width: 100%;
  box-sizing: border-box;
}

#signupModal input[type="password"],
#signupModal input[type="text"].password-toggle {
  background: #fafafa;
  font-size: 1.1rem;
  border-radius: 10px;
  padding: 14px 45px 14px 14px !important;
  border: 1px solid #ccc;
  margin-bottom: 0.5rem;
  width: 100% !important;
  box-sizing: border-box;
  line-height: 1.5;
}
#signupModal .btn-warning {
  background-color: #FFC107;
  color: #222;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 10px;
  border: none;
}
#signupModal .btn-warning:hover {
  background-color: #e0ac06;
}
#signupModal .my-3 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
#signupModal .g_id_signin {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}
#signupModal .g_id_signin > div,
#signupModal .g_id_signin iframe {
  width: 100% !important;
  display: block !important;
  min-width: 0 !important;
  max-width: 100% !important;
}
#signupModal .toggle-password {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none !important;
  border: none !important;
  color: #666 !important;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
}

#signupModal .toggle-password:hover {
  color: #ffc107 !important;
}

#signupModal .toggle-password:focus {
  outline: none;
  box-shadow: none;
}

#signupModal .toggle-password i {
  font-size: 1.1rem;
  line-height: 1;
  display: inline-block;
}
#signupModal .form-control:focus {
  border-color: #FFC107;
  box-shadow: 0 0 0 0.2rem rgba(255,193,7,.15);
}
#signupModal .divider span {
  color: #888;
  font-size: 1rem;
  font-weight: 500;
}
#signupModal p.small a {
  color: #FFC107 !important;
  font-weight: 500;
}

/* Responsive for modal */
@media (max-width: 480px) {
  #signupModal .modal-content {
    max-width: 95vw;
    padding: 0.5rem;
  }
  #signupModal .logo-top {
    max-width: 80px;
    max-height: 80px;
  }
  #signupModal .modal-body {
    padding: 1.5rem 0.5rem;
  }
  #signupModal .title {
    font-size: 1.5rem;
  }
}


/* OTP MODAL */
#otpModal .modal-content {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 0 1.5rem 2rem 1.5rem;
  border: none;
}

#otpModal .modal-header {
  border-bottom: none;
  padding-bottom: 0.5rem;
  background: transparent;
}

#otpModal .modal-title {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.5px;
}

#otpModal p,
#otpModal .text-muted {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: 1.05rem;
  color: #555;
}

#otpModal .otp-input {
  width: 48px;
  height: 56px;
  font-size: 2rem;
  border-radius: 10px;
  border: 1.5px solid #e0e0e0;
  margin: 0 2px;
  background: #fafbfc;
  color: #222;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

#otpModal .otp-input:focus {
  border-color: #6c63ff;
  box-shadow: 0 0 0 2px #6c63ff33;
  outline: none;
  background: #fff;
}

#otpModal .btn-warning,
#otpModal .btn-warning:active {
  background: linear-gradient(90deg, #ffb347 0%, #ffcc33 100%);
  color: #222;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 10px;
  border: none;
  box-shadow: 0 2px 8px rgba(255, 204, 51, 0.08);
  transition: background 0.2s, box-shadow 0.2s;
}

#otpModal .btn-warning:hover {
  background: linear-gradient(90deg, #ffcc33 0%, #ffb347 100%);
  color: #111;
  box-shadow: 0 4px 16px rgba(255, 204, 51, 0.13);
}

#otpModal .btn-link {
  color: #6c63ff;
  font-weight: 500;
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.2s;
  padding: 0;
  margin-bottom: 0.5rem;
}

#otpModal .btn-link:hover {
  color: #4834d4;
  text-decoration: underline;
}

#otpModal .btn-close {
  filter: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
#otpModal .btn-close:hover {
  opacity: 1;
}

#otpModal .text-danger {
  font-size: 1rem;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

@media (max-width: 480px) {
  #otpModal .modal-content {
    max-width: 98vw;
    padding: 0.5rem;
  }
  #otpModal .otp-input {
    width: 38px;
    height: 44px;
    font-size: 1.3rem;
  }
}



/* MAIN*/

.main-container {
  height: calc(91vh);
  overflow-y: auto;
  overflow-x: hidden;
}

/* HERO SECTION */
#hero {
  min-height: 85vh;
}

#hero .col-12 {
  flex: 1 1 10%;
  max-width: 50%;
}

#hero h1 {
  font-size: 2.5rem;
}

#hero p {
  font-size: 4rem;
}

#hero .btn {
  font-size: 1.1rem;
  padding: 10px 20px;
  border-radius: 8px;
}

#hero img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
}

.hero-img {
  display: block;
}

.hero-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: -1;
}

.hero-shape svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

@media (max-width: 768px) {
  #hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
  }

  #hero .hero-container {
    width: 100%;
    max-width: 100%;
  }

  #hero .row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
  }

  #hero .col-12 {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }

  /* Hide image column on mobile */
  #hero .row > .col-12.col-md-6:last-child {
    display: none !important;
  }
  
  #hero #heroImg {
    display: none !important;
  }

  /* Center text content on mobile with professional styling */
  #hero .row > .col-12:first-child {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding: 2.5rem 1.5rem !important;
  }

  /* Enhanced tagline styling */
  #hero p.text-danger {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 0.75rem !important;
    letter-spacing: 0.5px;
    opacity: 0.9;
    font-weight: 700;
  }

  /* Enhanced heading with better spacing */
  #hero h1 {
    font-size: 2.5rem;
    padding-left: 0 !important;
    text-align: center;
    margin-bottom: 1.5rem !important;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.5px;
  }

  #hero h1 .text-body-secondary {
    display: block;
    margin-top: 0.5rem;
    font-size: 2rem;
    color: #6c757d;
    font-weight: 600;
  }

  #hero p {
    font-size: 1.2rem;
  }

  /* Professional button styling */
  #hero button,
  #hero #orderNowBtn {
    padding: 1rem 2.5rem !important;
    font-size: 1.1rem !important;
    align-self: center !important;
    margin: 0.5rem auto 0 !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.3), 0 4px 12px rgba(255, 193, 7, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #1a1a1a;
    text-transform: uppercase;
    font-size: 0.95rem !important;
  }

  #hero button:hover,
  #hero #orderNowBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 193, 7, 0.4), 0 6px 16px rgba(255, 193, 7, 0.3);
    background: linear-gradient(135deg, #ffb300 0%, #ffa000 100%);
  }

  #hero button:active,
  #hero #orderNowBtn:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.3);
  }

  .hero-img {
    display: none !important;
    width: 80%;
  }

  .hero-shape svg {
    min-height: 250px;
  }

  /* Add subtle animation on load */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  #hero .row > .col-12:first-child > * {
    animation: fadeInUp 0.6s ease-out backwards;
  }

  #hero .row > .col-12:first-child > p.text-danger {
    animation-delay: 0.1s;
  }

  #hero .row > .col-12:first-child > h1 {
    animation-delay: 0.2s;
  }

  #hero .row > .col-12:first-child > button {
    animation-delay: 0.3s;
  }
}

/* GALLERY */
#galleryCarousel {
  padding: 0.1rem 0;
}

.gallery-container {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
}

.card-slider {
  overflow: hidden;
  position: relative;
}

.cards-track {
  display: flex;
  transition: transform 0.5s ease;
  padding: 0.5rem 1rem 0.5rem 1rem;
}

.card-slider .card {
  flex: 0 0 240px;
  margin: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: linear-gradient(165deg, #ffffff 0%, #fff7df 55%, #ffeec5 100%);
  box-shadow: 0 20px 40px rgba(55, 43, 5, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
  height: 320px;
  padding: 18px 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}

.card-slider .card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.65), transparent 55%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-slider .card::after {
  content: "";
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f7b733, #fc4a1a);
  opacity: 0.25;
  filter: blur(1px);
  transition: opacity 0.3s ease, width 0.3s ease;
}

.card-slider .card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 30px 60px rgba(52, 38, 2, 0.18);
}

.card-slider .card:hover::before {
  opacity: 1;
}

.card-slider .card:hover::after {
  opacity: 0.6;
  width: 75%;
}

.card-img-container {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
}

.card-img-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px 26px 0 0;
  background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.65), transparent 60%);
  pointer-events: none;
}

.card-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
  background: #fff;
}

.card-body {
  padding: 0 4px 0;
}

.card-text {
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #1f2933;
  line-height: 1.5;
}

/* Navigation buttons */
.carousel-btn {
  display: none;
}

@media (max-width: 768px) {
  .card-slider .card {
    flex: 0 0 75%;
    height: 300px;
    padding: 16px;
  }

  .card-slider .card .card-img {
    width: 140px;
    height: 140px;
  }
}

.cards-track {
  padding-left: 1rem;

  .card-slider {
    overflow: visible;
    width: 100vw;
    position: relative;
  }
  .cards-track {
    padding-left: 0;
    padding-right: 0;
    justify-content: center;
    align-items: center;
  }
}

/* Best Selling Cards with Image on Right */
.best-selling-card {
  min-height: 200px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 15px;
  position: relative;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-top: 3px solid rgba(255, 255, 255, 0.8);
}

.best-selling-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.best-selling-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.08);
}

.best-selling-card:hover::before {
  opacity: 1;
}

.best-selling-img-container {
  order: 2; /* Image on the right */
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  position: relative;
  overflow: visible;
  z-index: 2;
}

.best-selling-img-container::after {
  display: none;
}

.best-selling-img {
  width: 100%;
  max-width: 120%;
  height: 140px;
  object-fit: contain;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(5px);
}

.best-selling-card:hover .best-selling-img {
  transform: translateX(5px) scale(1.05) rotate(2deg);
}

.best-selling-content {
  order: 1; /* Content on the left */
  flex: 0 0 60%;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.bg-pink {
  background: linear-gradient(135deg, #ffe0e6 0%, #ffd6d6 50%, #ffccd9 100%);
}

.bg-green {
  background: linear-gradient(135deg, #e6f7e6 0%, #d6ffd6 50%, #ccffcc 100%);
}

.bg-blue {
  background: linear-gradient(135deg, #e6f0ff 0%, #d6e4ff 50%, #cce0ff 100%);
}

.best-selling-header {
  margin-bottom: 0.75rem;
}

.best-selling-category {
  font-size: 0.95rem;
  font-weight: 600;
  color: #555;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

.best-selling-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.best-selling-action {
  font-weight: 600;
  color: #e67e22;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
  padding: 8px 0;
}

.best-selling-action::after {
  content: '→';
  transition: transform 0.3s ease;
  display: inline-block;
}

.best-selling-action:hover {
  color: #d35400;
  gap: 10px;
}

.best-selling-action:hover::after {
  transform: translateX(4px);
}

/* Best Selling Section Title */
#bestSelling h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
}

#bestSelling h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #ffc107, transparent);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .best-selling-card {
    flex-direction: row; /* Keep row layout on mobile too */
    min-height: 140px;
    margin: 0 8px;
    overflow: visible;
  }

  .best-selling-img-container {
    flex: 0 0 45%;
  }

  .best-selling-img {
    height: 100px;
    max-width: 115%;
    transform: translateX(3px);
  }

  .best-selling-card:hover .best-selling-img {
    transform: translateX(3px) scale(1.04) rotate(1.5deg);
  }

  .best-selling-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .best-selling-content {
    padding: 12px 10px;
  }

  .best-selling-category {
    font-size: 0.85rem;
  }

  .best-selling-action {
    font-size: 0.9rem;
  }

  #bestSelling h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

/* Service  */
.services-section {
  background: linear-gradient(135deg, #fffbe6 0%, #f9f6e7 100%);
  padding-top: 64px;
  padding-bottom: 64px;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-pretitle {
  letter-spacing: 2px;
  font-size: 1.1rem;
  color: #eab308;
  text-transform: uppercase;
  font-weight: 700;
}

.services-title {
  font-family: 'Lilita One', cursive, sans-serif;
  font-size: 2.7rem;
  color: #23262a;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.services-desc {
  font-size: 1.1rem;
  color: #888;
}

.service-card-pro {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 2px solid #ffe082; /* Soft gold highlight */
  position: relative;
  overflow: hidden;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card-pro:hover {
  border-color: #ffd54f; /* Slightly deeper gold on hover */
  box-shadow: 0 4px 24px rgba(184,134,11,0.13);
}

.service-icon-pro {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  color: #fff;
  margin: 0 auto 1rem auto;
  box-shadow: 0 4px 18px rgba(230, 202, 108, 0.13);
}

.bg-gradient-delivery {
  background: linear-gradient(135deg, #4fc3f7 0%, #1976d2 100%);
}
.bg-gradient-pickup {
  background: linear-gradient(135deg, #81c784 0%, #388e3c 100%);
}
.bg-gradient-reservation {
  background: linear-gradient(135deg, #ff8a65 0%, #d84315 100%);
}

.service-title-pro {
  font-family: 'Alfa Slab One', cursive, sans-serif;
  font-size: 1.35rem;
  color: #23262a;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.divider {
  width: 40px;
  height: 3px;
  background: #ffe082;
  border-radius: 2px;
  margin: 0 auto 1rem auto;
}

.service-description-pro {
  color: #555;
  font-size: 1.08rem;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0;
  margin-top: 0.5rem;
  flex: 1;
}

@media (max-width: 991px) {
  .service-card-pro {
    min-height: 320px;
    padding: 1.7rem 1rem 1.2rem 1rem;
  }
  .service-title-pro {
    font-size: 1.1rem;
  }
  .service-description-pro {
    font-size: 0.98rem;
  }
}

@media (max-width: 767px) {
  .service-card-pro {
    min-height: 0;
    margin-bottom: 1.5rem;
  }
  .services-title {
    font-size: 2rem;
  }
}

/* You Might Also Like */
.rec-container {
  padding: 0 20px;
}
.recommendation-item {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0 15px; /* Add horizontal spacing between cards */
}

.recommendation-img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 10px;
}

.recommendation-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.recommendation-action {
  background: linear-gradient(45deg, #f39c12, #e67e22);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.recommendation-action:hover {
  background: linear-gradient(45deg, #e67e22, #d35400);
  transform: translateY(-2px);
}

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

  .recommendation-item {
    margin: 0 8px; /* Slightly less margin on mobile */
  }

  #recommendationsGrid {
    margin: 0 -8px; /* Compensate for card margins */
  }

  .recommendation-img {
    height: 90px;
  }
}

/* Feedback Modals */
.feedback-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
}
.feedback-modal-content {
  background-color: #fff;
  padding: 2.5rem 2rem 2rem 2rem;
  width: 95%;
  max-width: 600px;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(230, 202, 108, 0.18), 0 2px 24px rgba(0,0,0,0.08);
  animation: modalFadeIn 0.3s;
  margin: 5% auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 2px solid #efca6c;
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.close,
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  background: none;
}

.feedback-modal-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #23262a;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  font-family: 'Lilita One', cursive, sans-serif;
  text-shadow: 0 2px 8px #efca6c33;
}

.feedback-modal-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.close-btn {
  position: absolute;
  top: 18px;
  right: 28px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #d4a62a;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  transition: color 0.2s, transform 0.2s;
}
.close-btn:hover {
  color: #b8860b;
  transform: scale(1.15);
}

.feedback-modal-body {
  width: 100%;
  padding: 0.5rem 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feedback-modal-body .feedback-header {
  font-size: 1.5rem;
  font-weight: bold;
  color: #b8860b;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.feedback-modal-body .feedback-rating {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px #efca6c33;
}

.feedback-modal-body .feedback-text {
  font-size: 1.15rem;
  color: #222;
  margin-top: 1rem;
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.5;
  word-break: break-word;
  background: #fffde4;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px #efca6c22;
  width: 100%;
}

@media (max-width: 700px) {
  .feedback-modal-content {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    max-width: 98vw;
    border-radius: 18px;
  }
  .feedback-modal-title {
    font-size: 1.5rem;
  }
  .close-btn {
    font-size: 1.7rem;
    top: 10px;
    right: 14px;
  }
  .feedback-modal-body .feedback-header {
    font-size: 1.1rem;
  }
  .feedback-modal-body .feedback-rating {
    font-size: 1.3rem;
  }
  .feedback-modal-body .feedback-text {
    font-size: 1rem;
    padding: 0.7rem 0.7rem;
  }
}

/* Submit modal */
.rating-stars {
  display: flex;
  gap: 10px;
  justify-content: center;
  cursor: pointer;
}
.star {
  color: #ddd;
  font-size: 28px;
  transition: color 0.2s;
}
.star.active,
.star:hover {
  color: #ffc107;
}
.review-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  margin-top: 8px;
  min-height: 120px;
}

/* Buttons */
.submit-btn {
  background: #0d6efd;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}
.submit-btn:hover {
  background: #0b5ed7;
}

/* Reviews modal */
#reviewsModal h2 {
  font-size: 1.8rem;
  font-weight: 700;
  padding: 20px;
  margin-bottom: 10px;
  text-align: center;
  color: #d4a62a;
}
.divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 10px 0 20px;
}

/* Rating Summary */
.rating-summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
}
.rating-bars {
  flex: 1;
}
.rating-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 6px 0;
  font-weight: 600;
}
.rating-col p {
  margin: 0;
  font-weight: bold;
}

.rating-col span {
  display: block;
  margin-top: 5px;
  font-size: 18px;
}

.rating-row span:first-child {
  width: 30px;
}
.bar {
  flex: 1;
  height: 14px;
  background: #e5e5e5;
  border-radius: 8px;
  margin: 0 10px;
  overflow: hidden;
}
.bar div {
  height: 100%;
  background: #d4c21a;
  width: 0%;
  border-radius: 8px;
  transition: width 0.4s ease;
}
.rating-sidebox {
  min-width: 150px;
  text-align: center;
  margin-top: 15px;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px;
  background: #fafafa;
  font-weight: 600;
}

/* Reviews Grid */
.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  padding: 20px;
  max-height: 55vh;
  overflow-y: auto;
}
.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(230, 210, 97, 0.516);
}
.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-weight: bold;
}
.review-date {
  font-size: 0.85rem;
  color: #666;
}
.review-dish {
  font-size: 14px;
  margin: 0 0 5px;
  color: #444;
}
.stars {
  margin: 4px 0 8px;
  color: #d4c21a;
  font-size: 1.1rem;
}
.review-text {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.4;
}

/* Feedback submitted */
#feedbackSubmittedModal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

/* Desktop: feedback slider buttons left/right of feedback grid */
@media (min-width: 768px) {
  .feedback-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 3rem;
  }
  .feedback-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    font-size: 1.7rem;
    z-index: 2;
    background: #efca6c;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .feedback-slider-btn.prev {
    left: -70px;
  }
  .feedback-slider-btn.next {
    right: -70px;
  }
  .feedback-buttons-wrapper {
    position: static;
    width: 100%;
    display: contents;
    margin-top: 0;
    margin-bottom: 0;
    justify-content: unset;
    gap: 0;
  }
}

/* Footer */
footer {
  background-color: #212529;
  color: white;
}

footer a {
  transition: color 0.3s ease-in-out;
}

footer a:hover {
  color: #efca6c;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .navbar-brand img {
    height: 40px;
  }

  .hero-heading {
    font-size: 22px;
  }

  .carousel-card {
    height: 280px;
  }

  .reviews-container {
    grid-template-columns: 1fr;
  }
}

/* Desktop adjustments */
@media (min-width: 768px) {
  .desktop-menu {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  /* Best selling image on the right for desktop */
  .best-selling-card {
    flex-direction: row;
    align-items: center;
  }

  .best-selling-img-container {
    order: 2;
    flex: 0 0 40%;
  }

  .best-selling-content {
    order: 1;
    flex: 0 0 60%;
    padding-right: 20px;
  }

  .best-selling-img {
    height: 140px;
    width: 100%;
    border-radius: 0 8px 8px 0;
  }
  #feedbackSubmittedModal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
  }
}

/* Fix feedback modal for mobile so it is not suppressed and is well spaced */
@media (max-width: 768px) {
  .feedback-modal-content {
    width: 96vw !important;
    max-width: 96vw !important;
    min-width: 0 !important;
    padding: 24px 10px !important;
    border-radius: 18px !important;
    margin: 0 auto !important;
    box-sizing: border-box;
    position: relative;
  }
  .feedback-modal-title,
  .modal-title {
    font-size: 1.5rem !important;
    text-align: center !important;
    /* margin-bottom: 18px !important; */
    word-break: break-word;
  }
  .rating-summary {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: center !important;
    padding: 0 !important;
  }
  .rating-bars, .rating-sidebox {
    width: 95% !important;
    min-width: 0 !important;
    margin-bottom: 12px !important;
  }
  .rating-sidebox{
    width: 80% !important;
  }
  .rating-sidebox {
    display: flex !important;
    justify-content: center !important;
  }
  .reviews-container {
    max-height: 40vh !important;
    overflow-y: auto !important;
    margin-top: 12px !important;
    padding: 10px !important;
    grid-template-columns: 1fr !important;
  }
  .close, .close-btn {
    top: 12px !important;
    right: 18px !important;
    font-size: 2rem !important;
  }
}

/* --- Footer Structure (Keep Old Background Color & Line) --- */
footer.footer-main {
  background: #23262a;
  color: #fff;
  padding: 40px 0 0 0;
  font-size: 1.05rem;
  width: 100%;
  border-top: 1px solid #222;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  flex-wrap: wrap;
  gap: 82px;
}

.footer-col {
  flex: 1 1 0;
  min-width: 220px;
  margin-bottom: 0;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.footer-links div {
  margin-bottom: 12px;
  font-family: "Poppins", "Times New Roman", Times, serif;
  font-size: 1.15rem;
}
.footer-links a {
  color: #efca6c;
  text-decoration: none;
  transition: color 0.2s;
}
/* .footer-links a:hover {
  color: #efca6c;
} */

.footer-contact-title,
.footer-hours-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffc107;
  font-family: "Poppins", "Times New Roman", Times, serif;
}

.footer-contact-info div,
.footer-hours-info div {
  margin-bottom: 10px;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-info i,
.footer-hours-info i {
  color: #efca6c;
  font-size: 1.1rem;
  min-width: 22px;
  text-align: center;
}

.footer-contact-info span,
.footer-hours-info span {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding: 18px 0 8px 0;
  color: #bbb;
  font-size: 1rem;
}

.custom-footer-bottom {
  background: transparent;
}

.footer-divider {
  border: none;
  border-top: 1px solid #444;
  margin: 32px 0 0 0;
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 16px;
    gap: 0;
  }
  .footer-col {
    width: 100%;
    margin-bottom: 18px;
  }
}

/* --- Improved Mobile Footer Design --- */
@media (max-width: 600px) {
  footer.footer-main {
    padding: 20px 0 0 0;
    font-size: 1rem;
    width: 100vw;
    box-sizing: border-box;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
    max-width: 100vw;
    gap: 0;
  }
  .footer-col {
    width: 100%;
    margin-bottom: 16px;
    text-align: center;
  }
  .footer-contact-title,
  .footer-hours-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffc107;
    text-align: center;
    width: 100%;
  }
  .footer-contact-info {
    width: 100%;
    text-align: left;
    display: inline-block;
    margin: 0 auto 12px auto;
    max-width: 340px;
  }
  .footer-contact-info div {
    font-size: 1rem;
    margin-bottom: 7px;
    word-break: break-word;
    color: #fff;
    text-align: left;
  }
  .footer-contact-info a {
    font-size: 1rem;
    word-break: break-all;
    color: #4fa3ff;
  }
  .footer-hours-info {
    width: 100%;
    text-align: left;
    margin: 0 auto 12px auto;
    max-width: 340px;
  }
  .footer-hours-info div {
    font-size: 1rem;
    margin-bottom: 7px;
    word-break: break-word;
    color: #fff;
    text-align: left;
  }
  .footer-divider {
    margin: 18px 0 0 0;
    border-top: 1px solid #444;
  }
  .footer-bottom {
    font-size: 0.95rem;
    padding: 14px 0 18px 0;
    color: #bbb;
    text-align: center;
    width: 100vw;
    background: #23262a;
    border-radius: 0 0 12px 12px;
  }
}

/* Add to homepage.css */
#publicFeedbackList {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.feedback-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 1.5rem;
  max-width: 350px;
  min-width: 250px;
  max-height: 110px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feedback-card .feedback-header {
  font-weight: bold;
  color: #b8860b;
  margin-bottom: 0.5rem;
}
.feedback-card .feedback-date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 0.5rem;
}
.feedback-card .feedback-rating {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.feedback-card .feedback-text {
  font-size: 1rem;
  color: #333;
}
.feedback-slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
}

.feedback-slider-container.single-feedback-container {
  max-width: 560px;
  justify-content: center;
}
.feedback-slider {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: .8rem;
  width: 100%;
  min-height: unset;
  transition: all 0.3s;
  grid-auto-flow: row dense;
  margin-right: 50px;
}

.feedback-slider.feedback-slider-single {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-right: 0;
}
@media (max-width: 1100px) {
  .feedback-slider {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .feedback-slider {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
.feedback-slider-btn {
  background: #efca6c;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feedback-slider-btn:active {
  background: #ffd700;
}
@media (max-width: 900px) {
  .feedback-slider {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .feedback-slider {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  .feedback-slider-container {
    flex-direction: column;
    gap: 0.5rem;
  }
}


/* Center the submit button in the review modal */
#reviewModal .submit-btn {
  margin: 1.5rem auto 0 auto;
  width: 200px; 
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Move the close button higher in the feedback modal */
.feedback-modal-content .close-btn {
  top: 8px !important;
  right: 20px;
  position: absolute;
  font-size: 2rem;
  font-weight: bold;
  color: #23262a;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  transition: color 0.2s;
}

/* --- Remove gap between feedback cards in mobile grid --- */
@media (max-width: 600px) {
  #publicFeedbackSlider:not(.feedback-slider-single),
  #publicFeedbackList {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.3rem;
    padding: 0 4px;
    justify-content: center;
    align-items: stretch;
    max-width: 100vw;
  }
  .feedback-card {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-width: 0;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.09);
    padding: 0.7rem 0.5rem;
    border-radius: 14px;
    font-size: 0.97rem;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
  }
  /* Only show 4 feedback cards */
  #publicFeedbackSlider .feedback-card:nth-child(n+5),
  #publicFeedbackList .feedback-card:nth-child(n+5) {
    display: none !important;
  }
  /* Center buttons below grid */
  .feedback-buttons-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
  .feedback-slider-btn {
    position: static !important;
    margin: 0 0.5rem;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
}

/* Single feedback hero layout tweaks on mobile */
@media (max-width: 600px) {
  #publicFeedbackSlider.feedback-slider-single {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    padding: 0 1rem;
  }
  #publicFeedbackSlider.feedback-slider-single .feedback-card-pro-hero {
    margin: 1rem auto;
  }
}

/* Professional Feedback Card Styles */
.feedback-card-pro {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 1.3rem 1.2rem 1.1rem 1.2rem;
  margin: 0.5rem;
  min-width: 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
  border: 2px solid #ffe082; /* Soft gold highlight */
}

.feedback-card-pro-hero {
  max-width: 520px;
  width: 100%;
  margin: 1.5rem auto;
  box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}
.feedback-card-pro:hover {
  border-color: #ffd54f; /* Slightly deeper gold on hover */
  box-shadow: 0 4px 24px rgba(184,134,11,0.13);
}
.feedback-card-header-pro {
  display: flex;
  align-items: center;
  margin-bottom: 0.7rem;
}
.feedback-avatar-img-pro {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffe082;
  background: #fffbe7;
  margin-right: 0.9rem;
}
.feedback-avatar-letter-pro {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffe082;
  color: #b8860b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: bold;
  margin-right: 0.9rem;
  border: 2px solid #ffe082;
}
.feedback-user-info-pro {
  display: flex;
  flex-direction: column;
}
.feedback-user-name-pro {
  font-weight: 600;
  color: #b8860b;
  font-size: 1.1rem;
  margin-bottom: 0.1rem;
}
.feedback-date-pro {
  color: #aaa;
  font-size: 0.93rem;
}
.feedback-card-body-pro {
  margin-top: 0.2rem;
}
.feedback-stars-pro {
  color: #FFD700;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
  display: block;
}
.feedback-text-pro {
  color: #333;
  font-size: 1.05rem;
  margin-top: 0.3rem;
  line-height: 1.5;
  word-break: break-word;
}

/* --- Customer Feedback Section Title --- */
.customer-feedback-title {
  font-family: 'Lilita One', cursive, sans-serif;
  font-size: 2.7rem;
  font-weight: 900;
  color: #23262a;
  letter-spacing: 1px;
  margin-bottom: 0.7rem;
  text-align: center;
  text-shadow: 0 2px 8px #efca6c33;
}
.customer-feedback-title .highlight {
  color: #2196f3;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px #2196f322;
}

/* --- Submit Your Review Button --- */
.submit-review-btn {
  display: inline-block;
  margin: 0 auto 2.5rem auto;
  padding: 0.95rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #f9d423 0%, #ff4e50 100%);
  border: none;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(255, 193, 7, 0.13);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  text-align: center;
  letter-spacing: 1px;
  cursor: pointer;
}
.submit-review-btn:hover, .submit-review-btn:focus {
  background: linear-gradient(90deg, #ff4e50 0%, #f9d423 100%);
  box-shadow: 0 6px 24px rgba(255, 193, 7, 0.18);
  transform: translateY(-2px) scale(1.03);
  color: #fff;
  outline: none;
}

/* --- Feedback Section Layout --- */
.customer-feedback-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 2.5rem auto;
  padding: 2.5rem 0 1.5rem 0;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}