/* ---------------- Fonts ---------------- */
@font-face {
  font-family: "DkerPoster";
  src: url("./classic/fonts/dker_poster/Dker-Poster.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Unicorn Flakes";
  src: url("./classic/fonts/UniCorn_Flakes/ALtxYxb5S7WUxoBSlzNC_Unicorn Flakes.ttf")
    format("truetype");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: "Bilo Light";
  src: url("./fonts/Bilo/p4zpP5cQC2RND6C7b3kH_Bilo-Light.otf")
    format("opentype");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: "Antonio Script";
  src: url("./fonts/anthonio_script/AnthonioScript.ttf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("./fonts/Raleway/Raleway-SemiBold.ttf") format("opentype");
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: "Raleway Light";
  src: url("./fonts/Raleway/raleway.regular.ttf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Resalaty";
  src: url("./fonts/Resalaty/ResalatyArabicDEMO-Regular.ttf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Harmattan";
  src: url("./fonts/Harmattan/Harmattan\ Regular.ttf") format("opentype");
  font-display: swap;
}

body {
  margin: 0;
  font-family: "Raleway", sans-serif;
  background-color: #fff;
  color: #000;
}

.cart_counter {
  display: none;
}

/* Notification container */
#alert-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

/* Single alert box */
.alert-success {
  background: #28a745;
  color: #fff;
  padding: 12px 18px;
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(50px) !important;
  transition: opacity 0.4s, transform 0.4s;
  font-family: "Raleway", sans-serif !important;
  font-size: 1rem !important;
}

.alert-error {
  background: #dc3545;
  color: #fff;
  padding: 12px 18px;
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(50px) !important;
  transition: opacity 0.4s, transform 0.4s;
  font-family: "Raleway", sans-serif !important;
  font-size: 1rem !important;
}

.alert.show {
  opacity: 1;
  transform: translateY(0);
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}
.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important
;
}

.ui-widget-header {
  border: 1px solid #d4ccb0 !important;
  background: #ece8da !important;
  color: #ec0909 !important;
  font-weight: bold !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #ec0909 !important;
  background: #ec0909 !important;
  font-weight: bold !important;
  color: #fff !important;
}

/* ---------------- Navbar ---------------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  padding: 15px 60px;
  position: fixed;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  z-index: 10;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-links {
  display: none;
}

.cart {
  color: #ec0909;
  font-size: 30px;
}

.cart:hover {
  color: #000;
  transform: scale(1.2); /* zoom effect on hover */
}

.cart-icon {
  display: none;
}

/* Hide by default */
.desktop-cart {
  display: none;
}

.desktop-cart {
  position: fixed;
  bottom: 60px;
  right: 10px;
  /* background-image: url("./assets/sliderbg.png"); */
  border: 10px solid transparent;
  border-image-source: url("./assets/btn.png");
  border-image-slice: 30;
  border-image-repeat: stretch;
  border-image-outset: 5px;
  background-color: #ec0909;
  padding: 5px;
  cursor: pointer;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.desktop-cart:hover {
  background: #ec0909;
  transform: scale(1.1);
}

.desktop-cart:hover .bi-cart {
  color: #fff;
}

.desktop-cart .bi-cart {
  font-size: 28px;
  color: #fff;
}

@media (max-width: 768px) {
  .desktop-cart {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .cart-icon {
    display: flex;
  }
}

.sidebtn {
  display: flex;
}

@media (min-width: 1135px) {
  .nav-links {
    display: flex;
  }
  .sidebtn {
    display: none;
  }
}

.nav-links {
  align-items: center;
  background-color: #000;
  font-size: 22px;
  text-transform: capitalize;
  border: 10px solid #547390;
  border-image-source: url("./assets/blackbtn.png");
  border-image-slice: 30;
  border-image-repeat: stretch;
  border-image-outset: 5px;
  padding: 0.4rem 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-size: 18px;
  letter-spacing: 0.08rem;
  font-family: "Raleway";
}

.btn {
  display: inline-block;
  color: #fff;
  font-weight: 300;
  text-align: center;
  cursor: pointer;
  user-select: none;
  border: 10px solid transparent;
  border-image-source: url("./assets/btn.png");
  border-image-slice: 30;
  border-image-repeat: stretch;
  border-image-outset: 5px;
  background-color: #ec0909;
  padding: 0rem;
  box-sizing: border-box;
}
.btn:hover {
  border-image-source: url("./assets/blackbtn.png");
  color: #fff;
  background-color: #000;
}
.nav-links a.order-button {
  letter-spacing: 0.1rem;
  font-size: 1.1rem;
}

/* Toggle button */
@media (max-width: 1135px) {
  .nav-toggle-btn__line {
    background-color: #6f6a6a;
    height: 2px;
    margin-bottom: 6px;
  }
}
.nav-toggle-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}
.nav-toggle-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(236, 9, 9, 0.45);
  border-radius: 6px;
}
.nav-toggle-btn__line {
  width: 25px;
  height: 2px;
  background-color: #ec0909;
  display: block;
  margin: 4px 0;
  transition: all 0.3s ease-in-out;
}
.nav-toggle-btn:hover .nav-toggle-btn__line {
  background-color: #ec0909;
}
.nav-toggle-btn.is-open .nav-toggle-btn__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle-btn.is-open .nav-toggle-btn__line:nth-child(2) {
  opacity: 0;
}
.nav-toggle-btn.is-open .nav-toggle-btn__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.logo-img {
  height: 150px;
  width: 160px;
}
@media (max-width: 768px) {
  .logo-img {
    height: 100px;
    width: 100px;
  }
}

/* ---------------- Side Menu ---------------- */
.side-menu {
  position: fixed;
  inset: 0;
  height: 100vh;
  width: 100vw;
  background-color: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.45s ease;
  overflow-y: auto;
  overflow-x: hidden; /* Prevent horizontal scrollbar */
}

.side-menu.active {
  transform: translateY(0);
}
body.menu-open {
  overflow: hidden;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #ec0909;
  cursor: pointer;
  z-index: 1000;
  padding: 6px;
}

.side-nav-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 80px;
  padding: 24px clamp(20px, 5vw, 48px);
  text-align: center;
  width: 100%;
  box-sizing: border-box; /* Ensure padding is included in width */
}
.side-nav-links a {
  color: #000;
  font-family: "Raleway";
  font-size: clamp(18px, 2.6vw, 26px);
  text-decoration: none;
  letter-spacing: 0.08rem;
  font-weight: bold;
  text-transform: uppercase;
}
.side-nav-links a:hover {
  color: #ec0909;
}
.side-nav-links .order-button .btn {
  font-size: clamp(16px, 2.2vw, 20px);
}

/* ---------------- Slider ---------------- */
.content {
  margin-top: 20px;
  padding: 3px;
  text-align: center;
}
.slider {
  position: relative;
}

.text-right {
  text-align: right; /* Aligns the text (link) to the right */
  width: 100%; /* Make sure it takes full width */
  display: flex;
  justify-content: flex-end !important; /* Aligns the content (link) to the far right */
}

.slides {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: 700px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease;
  z-index: 0;
}
.slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-mask-image: url("./assets/sliderbg.png");
  mask-image: url("./assets/sliderbg.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
@media (max-width: 768px) {
  .slides {
    aspect-ratio: auto;
    height: 700px;
  }
  .slide {
    height: 100%;
  }
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(12px, 2.5vw, 28px);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.dot {
  height: 16px;
  width: 16px;
  margin: 0 5px;
  background: #fff;
  -webkit-mask: url("./assets/dotindicator.png") no-repeat center;
  -webkit-mask-size: contain;
  mask: url("./assets/dotindicator.png") no-repeat center;
  mask-size: contain;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.dot.active {
  background: #ec0909;
}

/* ---------------- Split Sections ---------------- */
.split-col {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 1100px;
  max-width: calc(100% - 2rem);
  margin: 6rem auto;
  gap: 2rem;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.split-col.show {
  opacity: 1;
  transform: translateY(0);
}
.split-left {
  flex: 1;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}
.h2,
#h1,
.contact-content h1 {
  font-family: "Antonio Script", cursive;
  text-transform: uppercase;
  font-weight: 500;
}
.split-heading {
  font-size: 2.0rem;
  margin-bottom: 0.5rem;
}
p {
  font-family: "Raleway Light";
  color: #000;
  font-size: 15px;
}
p a {
  color: #ec0909; /* red link */
  text-decoration: none; /* remove underline */
  font-weight: 600; /* optional: make it bolder */
  position: relative;
}
/* 
p a::after {
  content: "↗"; 
  font-size: 0.85em;
  margin-left: 4px;
} */

.split-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-container {
  padding: 10px;
  border: 3px solid rgba(236, 9, 9, 0.7);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 500px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-mask-image: url("./assets/sliderbg.png");
  mask-image: url("./assets/sliderbg.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
@media (max-width: 768px) {
  .split-col {
    flex-direction: column;
    text-align: center;
    margin: 2rem auto;
  }
  .split-left,
  .split-right {
    width: 100%;
  }
  .img-container {
    height: 320px;
    max-height: none;
  }
  .split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-bottom: 0;
  }
  .split-heading {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
  }
}

/* ---------------- Buttons & Footer ---------------- */
.content-btn {
  display: inline-block;
  color: #fff;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  user-select: none;
  border: 10px solid transparent;
  border-image-source: url("./assets/btn.png");
  border-image-slice: 30;
  border-image-repeat: stretch;
  border-image-outset: 5px;
  background-color: #ec0909;
  padding: 0.1rem;
  box-sizing: border-box;
  letter-spacing: 0.1rem;
  font-family: "Raleway";
  text-decoration: none;
  font-size: 18px;
}
.content-btn:hover {
  border-image-source: url("./assets/blackbtn.png");
  color: #fff;
  background-color: #000;
}

select {
  color: grey !important; /* default when empty */
}


select:invalid {
  color: grey !important; /* when no value is selected */
}

select:valid {
  color: black !important; /* when value is selected */
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 10;
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.footer-right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-transform: capitalize;
  padding: 0.4rem 0;
  row-gap: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-size: 18px;
  letter-spacing: 0.08rem;
  font-family: "Raleway";
}

.footer-btn {
  display: inline-block;
  color: #fff;
  font-weight: 300;
  text-align: center;
  cursor: pointer;
  user-select: none;
  border: 10px solid transparent;
  border-image-source: url("./assets/btn.png");
  border-image-slice: 30;
  border-image-repeat: stretch;
  border-image-outset: 5px;
  background-color: #ec0909;
  padding: 5px 12px;
  box-sizing: border-box;
}
.footer-btn:hover {
  border-image-source: url("./assets/whitebtn.png");
  color: #000;
  background-color: #fff;
}

@media (max-width: 1135px) {
  .footer {
    justify-content: center;
    gap: 16px;
  }
  .footer-right {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
  }

  .footer-right {
    flex-direction: column;
    gap: 12px;
  }

  .footer-links {
    justify-content: center;
    row-gap: 10px;
  }

  .footer-links a {
    margin: 0 10px;
  }
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 10px 0;
  max-width: 100%; /* Prevent exceeding parent width */
  box-sizing: border-box;
}
.socials ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.social-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  background-color: #000;
  border-radius: 20px;
  padding: 5px;
}
.socials ul a {
  text-decoration: none;
}

/* ---------------- Contact Page (Light-only) ---------------- */
.contact-page {
  background: #fff;
  color: #000;
}

/* Force light nav on contact page (keep brand look) */
.contact-page .nav-links {
  background-color: #000;
  border-image-source: url("./assets/blackbtn.png");
}
.contact-page .nav-links a {
  color: #fff;
}

/* Contact section light styles */
.contact-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: #fff;
}
.contact-content h1 {
  color: #000;
  text-transform: uppercase;
  text-align: center;
  margin-top: 250px;
  margin-bottom: 50px;
  font-size: 4rem;
  font-family: "Antonio Script", cursive;
  font-weight: bold;
}
.contact-content h1 .highlight {
  color: #ec0909;
}
@media (max-width: 768px) {
  .contact-content h1 {
    font-size: 2rem;
    margin-top: 120px;
    font-weight: bold;
  }
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
}
.contact-form label {
  font-family: "Raleway";
  color: #000;
  font-weight: 600;
  text-align: left;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: "Raleway";
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  font-size: 15px;
  padding: 12px 14px;
  background-color: #fff;
  color: #000;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #ec0909;
  box-shadow: 0 0 0 3px rgba(236, 9, 9, 0.15);
  outline: none;
}
.contact-form ::placeholder {
  color: #666;
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form select {
  appearance: none;
  background-color: #fff;
  color: #000;
}
.contact-form .btn {
  width: 150px;
  text-align: center;
  margin: 10px auto 0;
  display: block;
  font-family: "Raleway";
  font-size: large;
}
@media (max-width: 768px) {
  .contact-form .btn {
    width: 120px;
  }
}

/* === Contact two-column layout === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 60px;
  box-sizing: border-box;
}

/* Keep your existing .contact-form styles;
   just let it grow to fill the column */
.contact-form {
  max-width: none; /* override previous 500px cap */
  width: 100%;
}

/* Map column */
.map-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.map-card {
  position: relative;
  width: 100%;
  height: 520px;
  border: 3px solid rgba(236, 9, 9, 0.7);
  border-radius: 12px;
  overflow: hidden;
  box-sizing: border-box;
}

/* Reuse your masked image look on the map for brand consistency */
.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  -webkit-mask-image: url("./assets/sliderbg.png");
  mask-image: url("./assets/sliderbg.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* Optional action buttons under map */
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Responsive: stack on mobile */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .map-card {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .map-card {
    height: 320px;
  }
}

/* Header overlay helper */
.header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  width: 100%;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  font-size: 20px;
  -webkit-appearance: none;
}
.form-row input:disabled,
.form-row input[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
#h1 {
  font-family: "Antonio Script", cursive;
  font-size: 3rem;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  margin: 0;
  font-weight: bold;
}

/* ===== Mobile sticky CTA (Order + Reservation) ===== */
@media (max-width: 768px) {
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 12px calc(env(safe-area-inset-bottom) + 10px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .mobile-cta .btn {
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding: 1px;
  }

  body {
    padding-bottom: 130px;
  }

  body.menu-open .mobile-cta {
    display: none;
  }
}

@media (min-width: 769px) {
  .mobile-cta {
    display: none;
  }
}

.btn,
.btn:link,
.btn:visited,
.btn:hover,
.btn:active {
  text-decoration: none;
}

/* <--- MENU ---> */

.menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.dish-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px; /* spacing between image + description */
  padding: 20px;
  margin: 5px 0;
  border: 2px solid #eee; /* light border */
  border-radius: 12px;
  background: #fafafa;
  width: 80%;
  max-width: 800px;
}

/* Dish image */
.img-dish {
  flex: 0 0 180px; /* fixed image column */
  height: 150px;
  overflow: hidden;
  border-radius: 12px;
}

.img-dish img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dish description */
.dish-des {
  flex: 1;
  text-align: left;
}

.dish-des h3 {
  font-family: "Antonio Script", cursive;
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #ec0909;
}

.dish-des p {
  font-family: "Raleway";
  margin: 4px 0;
  font-size: 1rem;
  color: #333;
}

/* Price styling */
.dish-des p:last-child {
  font-weight: bold;
  color: #000;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .dish-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
  }

  .img-dish {
    width: 100%;
    height: 200px;
  }

  .dish-des {
    margin-top: 12px;
  }
}

/* ===== Menu (revamp) ===== */
.menu-wrap {
  margin: 40px auto 80px;
  width: min(1100px, calc(100% - 2rem));
}

/* Filter buttons */
.menu-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 12px 0 24px;
}
.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mt-3,
.my-3 {
  margin-top: 0.8rem !important;
}

.mt-3,
.my-3 {
  margin-bottom: 0.8rem !important;
}

.filter-btn,
.btn {
  border: 10px solid transparent;
  border-image-source: url("../classic/assets/btn.png");
  border-image-slice: 30;
  border-image-repeat: stretch;
  border-image-outset: 5px;
  background: #ec0909;
  color: #fff;
  cursor: pointer;
  padding: 6px 14px;
  font-family: "Raleway";
  letter-spacing: 0.06rem;
  font-size: 0.95rem;
  text-decoration: auto;
}

.filter-btn:hover,
.filter-btn.is-active,
.btn:hover,
.btn.is-active {
  border-image-source: url("./assets/blackbtn.png");
  background: #000;
  color: #fff;
}

.btn.black-background:hover,
.btn.black-background.is-active {
  border-image-source: url("../assets/whitebtn.png");
  background: #fff;
  color: #000;
}

/* Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.menu-card {
  grid-column: span 6; /* 2 per row on desktop */
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 14px;
  border: 2px solid #eee;
  border-radius: 14px;
  background: #fafafa;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-card-header {
  grid-column: span 12; /* 2 per row on desktop */
  display: grid;
  /* grid-template-columns: 160px 1fr;
  gap: 16px; */
  padding: 14px;
  border: 2px solid #eee;
  border-radius: 14px;
  background: #fafafa;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

/* Media (image) with FAAT mask */
.menu-media {
  margin: 0;
  width: 160px;
  height: 140px;
  overflow: hidden;
  border: 3px solid rgba(236, 9, 9, 0.7);
  border-radius: 12px;
  padding: 10px; /* 🔹 Added padding */
  box-sizing: border-box; /* Ensures padding fits inside width/height */
}

.menu-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  -webkit-mask-image: url("../classic/assets/sliderbg.png");
  mask-image: url("../classic/assets/sliderbg.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* Text block */
.menu-info {
  min-width: 0;
}

.menu-title-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 10px;
}

.menu-title {
  /* font-family: "Antonio Script"; */
  font-size: 1.8rem;
  margin: 0 0 4px;
  color: #ec0909;
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
}

.menu-price {
  font-weight: 700;
  font-size: 1.3rem;
  color: #000;
  padding-left: 8px;
}

.menu-desc {
  font-family: "Raleway Light";
  margin: 6px 0 10px;
  color: #000;
  font-size: 15px;
  line-height: 1.5;
}

/* Chips / tags */
.menu-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  border: 1px solid #ddd;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.02rem;
  background: #fff;
}
.chip-new {
  border-color: #ec0909;
}

/* Responsive */
@media (max-width: 1024px) {
  .menu-card {
    grid-column: span 12;
  } /* 1 per row */
}

@media (max-width: 640px) {
  .menu-card {
    grid-template-columns: 1fr; /* image above text */
    text-align: left;
  }
  .menu-media {
    width: 100%;
    height: 200px;
  }
  .menu-title {
    font-size: 1.6rem;
  }
  .no-image {
      display: none;
  }
}

/* ===== Book a Table ===== */
.reserve {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 20px 0 80px;
  background: #fff;
}

.reserve-title {
  color: #000;
  text-transform: uppercase;
  text-align: center;
  margin-top: 250px;
  margin-bottom: 50px;
  font-size: 4rem;
  font-family: "Antonio Script", cursive;
  font-weight: bold;
}
.reserve-title .highlight {
  color: #ec0909;
}

.reserve-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* image slightly larger */
  gap: 28px;
  align-items: start;
}

.reserve-grid1 {
  display: grid;
  grid-template-columns: 0.5fr 1fr 0.5fr; /* image slightly larger */
  gap: 28px;
  align-items: start;
}

.text-center {
  text-align: center !important;
}
/* Left media with FAAT styling */
.reserve-media {
  margin: 0;
  width: 100%;
  height: 540px;
  padding: 10px;
  border: 3px solid rgba(236, 9, 9, 0.7);
  border-radius: 12px;
  overflow: hidden;
  box-sizing: border-box;
}
.reserve-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  /* brand mask */
  -webkit-mask-image: url("../classic/assets/sliderbg.png");
  mask-image: url("../classic/assets/sliderbg.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* Right form */
.reserve-form {
  display: grid;
  gap: 14px 16px;
}
.reserve-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.reserve-form label {
  font-family: "Raleway";
  color: #000;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  font-family: "Raleway";
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  font-size: 15px;
  padding: 12px 14px;
  background-color: #fff;
  color: #000;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
  border-color: #ec0909;
  box-shadow: 0 0 0 3px rgba(236, 9, 9, 0.15);
  outline: none;
}

/* Make notes wider + taller */
#notes {
  grid-column: 1 / -1; /* span full width */
  min-height: 160px; /* taller textarea */
}

/* Center the button */
.reserve-form .btn {
  grid-column: 1 / -1; /* span full width */
  justify-self: center; /* center horizontally */
  font-size: large;
  margin-top: 10px;
  width: 180px; /* fixed width for symmetry */
}

.reserve p {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .reserve p {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: medium;
  }
}
@media (max-width: 1135px) {
  .reserve p {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* Responsive stacking */
@media (max-width: 1024px) {
  .reserve-grid,
  .reserve-grid1 {
    grid-template-columns: 1fr; /* stack */
  }
  .reserve-media {
    height: 420px;
  }
  .reserve-form {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .reserve-title {
    font-size: 2rem;
    margin-top: 120px;
  }
  .reserve-media {
    height: 300px;
  }
  .reserve-form {
    grid-template-columns: 1fr;
  }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* Reservation Summary Styling */
.reservation-summary {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 16px;
  margin-top: 8px;
}

.reservation-summary .form-row {
  margin-bottom: 12px;
}

.reservation-summary .form-row:last-child {
  margin-bottom: 0;
}

.reservation-summary label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 4px;
}

.reservation-summary input[readonly] {
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  color: #495057;
  cursor: not-allowed;
  font-weight: 500;
}

.reservation-summary input[readonly]:focus {
  border-color: #ced4da;
  box-shadow: none;
  outline: none;
}

/* Phone Input Group Styling */
.phone-input-group {
  display: flex;
  gap: 8px;
}

.phone-input-group .country-code {
  flex: 0 0 80px;
  text-align: center;
  background-color: #f8f9fa;
  border-color: #ced4da;
}

.phone-input-group input[type="number"] {
  flex: 1;
}

/* Button Group Styling */
.reserve-form .form-row:last-child {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.reserve-form .btn {
  flex: 0 0 auto;
  min-width: 120px;
}

.reserve-form .btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
  color: #fff;
}

.reserve-form .btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
}

/* Complete Responsive Styles for Cart Page */

/* Base styles (unchanged for desktop, ≥992px) */
.cart_page {
  background: #fff;
  color: #000;
  padding: 250px 20px 40px;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: "Raleway", sans-serif;
}

.cart_page .container {
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.cart_page .container .row {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
}

/* Cart Header (Styled like Contact Us) */
.cart-page-title {
  color: #000;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
  font-size: 4rem;
  font-family: "Antonio Script", cursive;
  font-weight: bold;
}

.cart-page-title .highlight {
  color: #ec0909;
}

.cart_page .col-lg-9 {
  flex: 0 0 70%;
  max-width: 70%;
}

.cart_page .col-lg-3 {
  flex: 0 0 30%;
  max-width: 30%;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  align-self: flex-start;
  height: fit-content;
  z-index: 5;
}

/* Product styles */
.product {
  position: relative;
  display: flex;
  gap: 20px;
  background: #fafafa;
  border: 2px solid #eee;
  border-radius: 14px;
  padding: 5px 10px;
  margin-bottom: 16px;
  box-sizing: border-box;
  align-items: center;
}

.product-image {
  flex: 0 0 150px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid rgba(236, 9, 9, 0.7);
  padding: 10px;
  box-sizing: border-box;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-mask-image: url("../classic/assets/sliderbg.png");
  mask-image: url("../classic/assets/sliderbg.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.product-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-title {
  /* font-family: "Antonio Script"; */
  font-size: 1.8rem;
  color: #ec0909;
  white-space: nowrap;
  /* overflow: hidden; */
  text-overflow: ellipsis;
  margin-bottom: 0;
}

.product-description {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0;
}

.product-line-price {
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  margin-left: auto;
  white-space: nowrap;
  align-self: center;
}

.product-removal {
  position: absolute;
  top: 12px;
  right: 12px;
}

.product-removal .remove-product {
  background: none;
  border: none;
  color: #ec0909;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.product-removal .remove-product:hover {
  color: #000;
}

/* Quantity Counter (Centered + and - Icons) */
.cart_counter {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.cart_counter input.qty {
  width: 48px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  height: 24px;
}

.cart_counter button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ec0909;
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  line-height: 1;
  text-align: center;
}

.cart_counter button:hover {
  background: #000;
}

.cart_counter button.decrement::before {
  content: "-";
}

.cart_counter button.increment::before {
  content: "+";
}

.cart_counter a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #555;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cart_counter a:hover {
  background: #ec0909;
  color: #fff;
}

/* Reservation Box */
.shipping_part {
  margin-top: 30px;
  background: #fafafa;
  border: 2px solid rgba(236, 9, 9, 0.15);
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;
}

.shipping_custom_heading {
  font-family: "Antonio Script", cursive;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #000;
  text-align: center;
}

.shipping_box {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.shipping_box > div {
  width: 100% !important;
  max-width: 100% !important;
  flex: unset !important;
}

.shipping_box label {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 3px;
  font-family: "Raleway", sans-serif;
  color: #000;
}

.shipping_custom_input,
.shipping_box select {
  width: 100%;
  padding: 10px 12px;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  font-family: "Raleway";
  box-sizing: border-box;
}

.shipping_custom_input:focus,
.shipping_box select:focus {
  border-color: #ec0909;
  outline: none;
  box-shadow: 0 0 0 3px rgba(236, 9, 9, 0.15);
}

.phone-input {
  display: flex;
  gap: 8px;
}

.phone-input input:first-child {
  flex: 0 0 60px !important;
  max-width: 60px !important;
  text-align: center;
}

.phone-input input:last-child {
  flex: 1;
}

.shipping_box.jadda-row {
  margin-top: 20px;
  display: grid !important;
  grid-template-columns: auto auto auto auto;
  gap: 20px;
}

/* Order Summary */
.totals_area {
  background: #fff;
  border: 2px solid rgba(236, 9, 9, 0.15);
  border-radius: 14px;
  padding: 10px 24px;
  box-sizing: border-box;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.totals_area .order-summary-title {
  font-family: "Antonio Script";
  font-size: 2rem;
  text-align: center;
  margin-bottom: 18px;
  color: #000;
  text-transform: uppercase;
}

.totals-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  color: #000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.totals-item:last-of-type {
  border-bottom: none;
  margin-bottom: 16px;
}

.totals-item-total {
  font-weight: 700;
  font-size: 1.15rem;
  color: #000;
}

.totals-item p:first-child {
  margin: 0;
  font-weight: 600;
}

.totals-value {
  font-weight: 400;
  color: #111;
  min-width: 90px;
  text-align: right;
}

/* Buttons */
.btn {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  font-family: "Raleway", sans-serif;
  text-align: center;
  cursor: pointer;
  user-select: none;
  border: 10px solid transparent;
  border-image-source: url("../classic/assets/btn.png");
  border-image-slice: 30;
  border-image-repeat: stretch;
  border-image-outset: 5px;
  background-color: #ec0909;
  padding: 5px 12px;
  font-size: 1rem;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.btn:hover {
  border-image-source: url("../classic/assets/blackbtn.png");
  color: #fff;
  background-color: #000;
}

.btn-full {
  display: block;
  margin: 20px auto 0;
  width: 85%;
  max-width: 420px;
  background: #ec0909;
  color: #fff;
  padding: 5px;
  font-family: "Raleway", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  border: 10px solid transparent;
  border-image-source: url("../classic/assets/btn.png");
  border-image-slice: 30;
  border-image-repeat: stretch;
  border-image-outset: 5px;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-bottom: 24px;
}

.btn-note {
  padding: 0px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: 50px;
}

.btn-full:hover {
  background: #000;
  border-image-source: url("../classic/assets/whitebtn.png");
  transform: translateY(-2px);
}

.btn-inline {
  width: auto;
  margin-top: 10px;
}

.btn-inline.continue-shopping {
  display: block;
  margin: 20px auto;
  width: fit-content;
}

/* Modal Styles */
.modal-content.modal-addons {
  border-radius: 12px;
  border: 2px solid rgba(236, 9, 9, 0.15);
}

.modal-header {
  border-bottom: 1px solid rgba(236, 9, 9, 0.15);
  padding: 8px 16px;
}

.modal-title {
  font-family: "Antonio Script", cursive;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  margin: 0;
}

.modal-body {
  padding: 16px;
}

.modal-body .form-group {
  margin-bottom: 16px;
}

.modal-body label {
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
  display: block;
}

.modal-body textarea,
.modal-body input:not([type="radio"]):not([type="checkbox"]) {
  width: 100%;
  padding: 10px 12px;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: "Raleway", sans-serif;
  box-sizing: border-box;
}

.modal-body textarea:focus,
.modal-body input:focus {
  border-color: #ec0909;
  outline: none;
  box-shadow: 0 0 0 3px rgba(236, 9, 9, 0.15);
}

.modal-body .btn.add-note {
  display: block;
  margin: 16px auto 0;
  width: 100%;
  max-width: 200px;
}

/* Responsive Adjustments for Modal */

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .modal-header {
    padding: 6px 12px;
  }

  .modal-title {
    font-size: 1.4rem;
  }

  .modal-body {
    padding: 12px;
  }

  .modal-body label {
    font-size: 0.85rem;
  }

  .modal-body textarea,
  .modal-body input:not([type="radio"]):not([type="checkbox"]) {
    font-size: 0.9rem;
    padding: 8px 10px;
  }

  .modal-body .btn.add-note {
    margin: 12px auto 0;
    max-width: 180px;
  }
}

/* Mobile (below 768px) */
@media (max-width: 767px) {
  .modal-header {
    padding: 6px 12px;
  }

  .modal-title {
    font-size: 1.3rem;
  }

  .modal-body {
    padding: 12px;
  }

  .modal-body label {
    font-size: 0.8rem;
  }

  .modal-body textarea,
  .modal-body input:not([type="radio"]):not([type="checkbox"]) {
    font-size: 0.85rem;
    padding: 8px 10px;
  }

  .modal-body .btn.add-note {
    margin: 10px auto 0;
    max-width: 180px;
  }
}

/* Small Mobile (below 576px) */
@media (max-width: 575px) {
  .modal-header {
    padding: 4px 10px;
  }

  .modal-title {
    font-size: 1.2rem;
  }

  .modal-body {
    padding: 10px;
  }

  .modal-body label {
    font-size: 0.75rem;
  }

  .modal-body textarea,
  .modal-body input:not([type="radio"]):not([type="checkbox"]) {
    font-size: 0.8rem;
    padding: 6px 8px;
  }

  .modal-body .btn.add-note {
    margin: 8px auto 0;
    max-width: 160px;
  }
}

/* Alerts */
.alert {
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert .close {
  font-size: 1rem;
  color: inherit;
  opacity: 0.8;
}

/* Responsive Adjustments */

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .cart_page {
    padding: 200px 16px 40px;
  }

  .cart-page-title {
    font-size: 3rem;
    margin-bottom: 40px;
  }

  .cart_page .container .row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .cart_page .col-lg-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .cart_page .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    top: auto;
  }

  .product {
    flex-wrap: nowrap;
    padding: 12px;
    gap: 16px;
  }

  .product-image {
    flex: 0 0 100px;
    height: 90px;
  }

  .product-title {
    font-size: 1.4rem;
  }

  .product-description {
    font-size: 0.85rem;
  }

  .product-line-price {
    font-size: 0.95rem;
  }

  .cart_counter button {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .cart_counter input.qty {
    width: 40px;
    height: 28px;
    font-size: 0.85rem;
  }

  .cart_counter a {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .shipping_box {
    grid-template-columns: repeat(2, 1fr);
  }

  .shipping_box.jadda-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .shipping_custom_heading {
    font-size: 1.6rem;
  }

  .shipping_box label {
    font-size: 1.05rem;
  }

  .shipping_custom_input,
  .shipping_box select {
    font-size: 0.9rem;
    padding: 8px 10px;
  }

  .phone-input input:first-child {
    flex: 0 0 80px;
    max-width: 80px;
  }

  .totals_area .order-summary-title {
    font-size: 1.8rem;
  }

  .totals-item {
    font-size: 0.95rem;
  }

  .totals-item-total {
    font-size: 1.05rem;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .btn-full {
    max-width: 360px;
    padding: 12px;
    font-size: 1rem;
  }

  .btn-inline.continue-shopping {
    margin: 16px auto;
  }

  .alert {
    font-size: 0.85rem;
    padding: 10px;
  }
}

/* Mobile (below 768px) */
@media (max-width: 767px) {
  .cart_page {
    padding: 160px 12px 120px;
  }

  .cart-page-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .cart_page .container {
    padding: 0 12px;
  }

  .cart_page .container .row {
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 -8px;
  }

  .cart_page .col-lg-9,
  .cart_page .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 8px;
    position: relative;
    top: auto;
  }

  .product {
    flex-direction: column;
    align-items: center;
    padding: 12px;
    gap: 0px;
    position: relative;
  }

  .product-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    flex: 0 0 auto;
  }

  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-details {
    width: 100%;
    text-align: center;
  }

  .product-title {
    font-size: 1.8rem;
    font-weight: bold;
    white-space: normal;
    text-align: center;
  }

  .product-description {
    font-size: 0.9rem;
    text-align: center;
  }

  .product-line-price {
    font-size: 1rem;
    margin-left: 0;
    margin-top: 8px;
  }

  .product-line-price-and-counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 8px;
  }

  .product-removal {
    top: 8px;
    left: 8px;
    right: auto;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-removal .remove-product {
    font-size: 15px;
    color: #fff;
  }

  .product-removal .remove-product:hover {
    color: #ec0909;
  }

  .cart_counter {
    justify-content: flex-end;
    margin-top: 0;
  }

  .cart_counter button {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .cart_counter input.qty {
    width: 40px;
    height: 28px;
    font-size: 0.85rem;
  }

  .cart_counter a {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .shipping_part {
    margin-top: 20px;
    padding: 12px;
  }

  .shipping_custom_heading {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .shipping_box {
    grid-template-columns: 1fr;
  }

  .shipping_box.jadda-row {
    grid-template-columns: 1fr;
  }

  .shipping_box label {
    font-size: 1.05rem;
  }

  .shipping_custom_input,
  .shipping_box select {
    font-size: 0.85rem;
    padding: 8px 10px;
  }

  .phone-input input:first-child {
    flex: 0 0 70px;
    max-width: 70px;
  }

  .totals_area {
    padding: 12px 16px;
    margin-top: 20px;
  }

  .totals_area .order-summary-title {
    font-size: 1.6rem;
  }

  .totals-item {
    font-size: 0.9rem;
  }

  .totals-item-total {
    font-size: 1rem;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .btn-full {
    max-width: 100%;
    padding: 10px;
    font-size: 0.95rem;
  }

  .btn-inline.continue-shopping {
    margin: 12px auto;
  }

  .modal-content.modal-addons {
    margin: 12px;
  }

  .modal-header {
    padding: 10px 12px;
  }

  .modal-title {
    font-size: 1.3rem;
  }

  .modal-body {
    padding: 12px;
  }

  .modal-body .form-group {
    margin-bottom: 12px;
  }

  .modal-body label {
    font-size: 0.8rem;
  }

  .modal-body textarea,
  .modal-body input:not([type="radio"]):not([type="checkbox"]) {
    font-size: 0.85rem;
    padding: 8px 10px;
  }

  .modal-body .btn.add-note {
    margin: 10px auto 0;
    max-width: 180px;
  }

  .alert {
    font-size: 0.8rem;
    padding: 10px;
  }

  /* Mobile CTA */
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px 12px calc(env(safe-area-inset-bottom) + 10px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .mobile-cta .btn {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    padding: 1px;
  }

  body {
    padding-bottom: 100px;
  }

  body.menu-open .mobile-cta {
    display: none;
  }
}

/* Ensure mobile CTA is hidden on desktop */
@media (min-width: 768px) {
  .mobile-cta {
    display: none;
  }
}

/* Small Mobile (below 576px) */
@media (max-width: 575px) {
  .cart_page {
    padding: 140px 8px 100px;
  }

  .cart-page-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .cart_page .container {
    padding: 0 8px;
  }

  .cart_page .container .row {
    gap: 0px;
    margin: 0 -6px;
    display: block;
  }

  .cart_page .col-lg-9,
  .cart_page .col-lg-3 {
    padding: 0 6px;
  }

  .product {
    padding: 10px;
  }

  .product-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-title {
    font-size: 1.6rem;
    font-weight: bold;
    white-space: normal;
    text-align: center;
  }

  .product-description {
    font-size: 0.85rem;
    text-align: center;
  }

  .product-line-price {
    font-size: 0.95rem;
  }

  .product-line-price-and-counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 8px;
  }

  .product-removal {
    top: 6px;
    left: 6px;
    width: 24px;
    height: 24px;
  }

  .product-removal .remove-product {
    font-size: 14px;
  }

  .cart_counter button {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }

  .cart_counter input.qty {
    width: 36px;
    height: 26px;
    font-size: 0.8rem;
  }

  .cart_counter a {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }

  .shipping_part {
    margin-top: 16px;
    padding: 10px;
  }

  .shipping_custom_heading {
    font-size: 1.3rem;
  }

  .shipping_box label {
    font-size: 1.05rem;
  }

  .shipping_custom_input,
  .shipping_box select {
    font-size: 1rem;
    padding: 6px 8px;
  }

  .phone-input input:first-child {
    flex: 0 0 60px;
    max-width: 60px;
  }

  .totals_area {
    padding: 10px 12px;
  }

  .totals_area .order-summary-title {
    font-size: 1.4rem;
  }

  .totals-item {
    font-size: 0.85rem;
  }

  .totals-item-total {
    font-size: 0.95rem;
  }

  .btn {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .btn-full {
    padding: 8px;
    font-size: 0.9rem;
  }

  .btn-inline.continue-shopping {
    margin: 10px auto;
  }

  .modal-content.modal-addons {
    margin: 8px;
  }

  .modal-title {
    font-size: 1.2rem;
    text-transform: uppercase;
  }

  .modal-body {
    padding: 10px;
  }

  .modal-body label {
    font-size: 0.75rem;
  }

  .modal-body textarea,
  .modal-body input:not([type="radio"]):not([type="checkbox"]) {
    font-size: 0.8rem;
    padding: 6px 8px;
  }

  .modal-body .btn.add-note {
    margin: 8px auto 0;
    max-width: 160px;
  }

  .alert {
    font-size: 0.75rem;
    padding: 8px;
  }
}

/* Gallery Page */
.gallery-sec {
  margin-bottom: 55px;
}

.gallery-grid {
  display: flex;
  gap: 55px;
  margin-inline: 180px;
}

/* Initial hidden state */
.gallery-img {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Visible state */
.gallery-img.show {
  opacity: 1;
  transform: translateY(0);
}

/* Mask wrapper */
.masked-img {
  -webkit-mask-image: url("./assets/sliderbg.png");
  mask-image: url("./assets/sliderbg.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.masked-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Hover effect */
.masked-img:hover img {
  transform: scale(1.05);
}

/* Responsive for tablets */
@media (max-width: 1024px) {
  .gallery-grid {
    margin-inline: 80px; /* reduce side margins */
    gap: 30px; /* smaller gap */
  }

  .masked-img img {
    aspect-ratio: 4/3; /* adjust ratio for tablets */
  }
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .gallery-grid {
    flex-direction: column; /* stack images vertically */
    margin-inline: 10px; /* minimal side margin */
    gap: 55px; /* keep spacing */
  }

  .gallery-sec {
    margin-bottom: 55px;
  }

  .masked-img img {
    aspect-ratio: 1.2/1; /* square-ish for mobile */
  }
}

@media (max-width: 768px) {
  .split-col {
    flex-direction: column;
  }

  .split-left {
    order: 1; /* text first */
  }

  .split-right {
    order: 2; /* image second */
  }

  .split-left,
  .split-right {
    flex: 1 1 100%; /* full width in column */
  }
}


.arabic-font {
  font-family: "Harmattan";
}

