/* --- CSS VARIABLES & BASE RESET --- */

:root {
  --primary-color: #2e1c0e; /* Dark brown/espresso color */
  --accent-color: #d8c39e; /* Light tan/beige color */
  --gold-color: #aa9866; /* Gold/Ochre color for logo elements */
  --off-white: #f7f7f7;
  --dark-text: #333;
  --light-text: #fff;
  --item-bg: #fff;
  --toggle-on-color: #8ac08a; /* Greenish for Veg (ON) */
  --toggle-off-color: #c95166; /* Reddish for Non-Veg (OFF) */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Ensure proper font loading if files are present */
@font-face {
  font-family: "Copperplate Gothic Bold";
  src: url("fonts/COPRGTB.TTF") format("truetype");
  font-weight: bold;
}
@font-face {
  font-family: "Copperplate Gothic Light";
  src: url("fonts/COPRGTL.TTF") format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "Baskerville";
  src: url("fonts/Baskerville (2).ttc") format("truetype");
}

h5 {
    color: #cca353;
    font-weight: 700;
}

/*Login page CSS start ***************************/
.login-wrapper {
    position: relative;
    min-height: 90vh;
    padding-bottom: 160px; /* for bottom artwork */
}

/* LOGO */
.qaf-logo {
    width: 200px;
    max-width: 80%;
}

 .qf-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     padding: 10px;
   }

   .qf-header-left {
     flex: 1;
   }

   .qf-logo {
     width: 150px;
     max-width: 45vw;
   }

   .qf-header-right {
     display: flex;
     flex-direction: column;
     align-items: flex-end;
     gap: 1rem;
    
   }

   .qf-icons-row {
     display: flex;
     align-items: flex-start;
     gap: 2.2rem;
   }
   .qf-icons-row a {color:inherit;}

   .qf-icon-block {
     display: flex;
     flex-direction: column;
     align-items: center;
     position: relative;
   }

   .qf-icon-img {
     width: 41px;
     height: 38px;
   }

   .qf-icon-label {
     font-family: var(--font-heading);
     font-size: 0.55rem;
     font-weight: 600;
     color: var(--color-secondary-text);
     margin-top: 0.2rem;
     letter-spacing: 0.08em;
   }

   .qf-cart-badge {
     position: absolute;
     top: -6px;
     right: -6px;
     background: #d6b676;
     color: white;
     width: 17px;
     height: 17px;
     font-size: 0.55rem;
     font-weight: 700;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
   }

   .veg-toggle-wrapper {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     margin-top: 72px;
   }

   .toggle-label-veg {
     color: gray;
     /* green */
     font-size: 0.8rem;
     font-weight: 600;
   }

   .toggle-label-nonveg {
     color: #438609;
     /* red */
     font-size: 0.8rem;
     font-weight: 600;
   }

   /* Toggle Switch */
   .switch {
     position: relative;
     display: inline-block;
     width: 40px;
     height: 20px;
   }

   .switch input {
     opacity: 0;
   }

   .slider {
     position: absolute;
     cursor: pointer;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-color: gray;
     transition: .4s;
     border-radius: 20px;
   }

   .slider:before {
     position: absolute;
     content: "";
     height: 16px;
     width: 16px;
     left: 2px;
     bottom: 2px;
     background-color: white;
     transition: .4s;
     border-radius: 50%;
   }

   input:checked+.slider {
     background-color: #d45b5b;
     /* red when NON-VEG */
   }

   input:checked+.slider:before {
     transform: translateX(20px);
   }
   
   .veg-toggle-wrapper .slider {background:gray;}
   
   .offcanvas {
    background: #fffef7 !important;
}

.offcanvas-body .text-primary {
    color: #CCA353 !important;
}

.offcanvas-body .rounded-pill {
    background-color: #CCA353 !important;
}

.offcanvas .btn-primary {
    background: #CCA353 !important;
    border: 0;
}

.ptSection a {color:#000;}

.text-primary {
    color: #CCA353 !important;
}

.form-control {
    background-color: #EFEFEF;
}


input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--bs-modal-padding);
    font-family: Baskerville;
}

input {
    height: 60px;
    font-weight: 500 !important;
    border-radius: 12px !important;
}
.form-control:focus {
  box-shadow: none;
  border: 2px solid #CCA353;
   background-color:#fffef7;
}

#pay-online {font-family: "Baskerville";
    font-weight: 500;}
.modal-body .text-primary {font-weight:500;}    
  .cursor-pointer {
    cursor: pointer;
}

.btn-primary {
  background:#CCA353;
    --bs-btn-color: #fff;
  --bs-btn-bg: #CCA353;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #CCA353 !important;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 49,132,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #CCA353;
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #d3d7dd;
  --bs-btn-disabled-border-color: transparent;
}



/* FORM CARD */
.login-card {
    background: #FAF8ED;
    padding: 15px 25px;
    border-radius: 25px;
    max-width: 420px;
    text-align: center;
    position: relative;
        z-index: 99;
}

.form-label-title {
    font-size: 18px;
    font-weight: 600;
    font-family: "Copperplate Gothic Light";
    color: #A6884C;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* INPUT */
.phone-input {
    border-radius: 18px;
    height: 55px;
    background: #fff;
    border: 1px solid #f0e8d8;
    font-size: 18px;
    margin-bottom: 20px;
}

/* OTP BUTTON */
.otp-btn {
    background: #BE8D3C;
    border: none;
    color: #FFF;
    padding: 12px 40px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Baskerville";
    text-align: center;
    margin-top: 10px;
    width: 60%;
}

/* POLICY LINKS */
.policy-text a {
    color: #848890;
    font-size: 14px;
    text-decoration: none;
}

/* BOTTOM ART */
.bottom-art {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}


.deskimg {
    display: block;
}
.mobimg {
    display: none;
}

@media screen and (max-width: 480px) {
.deskimg {
    display: none;
}
.mobimg {
    display: block;
}
.login-card {
    width:350px;
}

}
/* DESKTOP IMPROVEMENTS */
@media (min-width: 992px) {
    .login-wrapper {
        padding-top: 50px;
    }

    .login-card {
        max-width: 480px;
        padding: 15px 35px;
    }

    .otp-btn {
        width: 50%;
        font-size: 22px;
    }

    .phone-input {
        height: 60px;
        font-size: 20px;
    }
}

/* OTP Modal Container */
.otp-modal {
    border-radius: 28px;
    padding: 25px 15px 35px;
    background: #fff;
    position: relative;
}

/* Close button */
.otp-close {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 20px;
}

/* Title */
.otp-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* OTP Input Boxes */
.otp-input-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.otp-input {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    border: 1px solid #eee;
    font-size: 24px;
    text-align: center;
    background: #F9F9F8;
}

/* Submit Button */
.otp-submit-btn {
    background: #C79A49;
    color: #fff;
    border: none;
    padding: 12px 50px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Resend */
.resend-box {
    font-size: 15px;
    color: #777;
}

.resend-box a {
    color: #C79A49;
    text-decoration: none;
}

.otp-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 9999 !important;
    cursor: pointer;
}
/*login page css end */

/* ---------------------------------------------------------------------- */
/* --- MOBILE STYLES (Your Original Layout - **UNCHANGED**) --- */
/* ---------------------------------------------------------------------- */

body {
  
  color: var(--dark-text);
  padding-bottom: 20px;
}

/* --- Header/Navigation (Mobile) --- */

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Align logo to the top */
  padding: 15px 15px 5px 15px;
}

.logo-title {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.logo-image {
  height: 100%;
  object-fit: contain;
}

.actual-logo {
  max-width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  gap: 10px;
  padding-top: 30px;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 8px;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
}

.icon-placeholder {
  width: 30px;
  height: 30px;
  margin-bottom: 2px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
}

.badge-2 {
  position: relative;
}
.badge-2::after {
  content: "2";
  position: absolute;
  top: -5px;
  right: 0px;
  background-color: var(--primary-color);
  color: var(--light-text);
  border-radius: 50%;
  padding: 2px 4px;
  font-size: 8px;
  line-height: 1;
}

/* --- Veg/Non-Veg Toggle (Mobile) --- */

.toggle-container {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Align to the right side */
  padding: 0 15px 20px 15px;
}

.veg-text,
.non-veg-text {
  font-size: 12px;
  font-weight: bold;
  margin: 0 5px;
}

.veg-text {
  color: #8ac08a; /* Greenish for VEG */
}

.non-veg-text {
  color: #c95166; /* Reddish for NON-VEG - The one that's "off" */
}

/* Toggle Switch Styling (Mobile) */
.switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--toggle-off-color);
  transition: 0.4s;
  border-radius: 20px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--toggle-on-color);
}

input:checked + .slider:before {
  transform: translateX(18px);
}

/* --- Menu Sections (Mobile) --- */

.menu-section {
  padding: 15px;
  margin-bottom: 10px;
  background-color: var(--item-bg);
  border-bottom: 1px solid #eee;
}

.coffee-section {
  background-color: #f5f0e3;
  padding: 20px 15px;
  border-radius: 0;
  margin-bottom: 20px;
}

.section-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
  letter-spacing: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Arrow placeholders for mobile */
.section-title .arrow-up {
  content: "^";
  font-size: 24px;
  font-weight: normal;
}
.section-title .arrow-down {
  content: "v";
  font-size: 24px;
  font-weight: normal;
}

.teas-section-1,
.teas-section-2 {
  background-color: var(--off-white);
  padding: 15px;
}

/* --- Coffee Grid Layout (Mobile) --- */

.coffee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: 15px;
}

.coffee-item {
  background-color: var(--item-bg);
  padding: 10px; /* Card Padding */
  border-radius: 12px; /* Card Radius */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.item-image {
  width: 100%;
  height: 140px;
  background-color: #f0f0f0;
  margin-bottom: 8px;
  border-radius: 8px;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  padding-right:15px;
}

/* --- START OF PIXEL-PERFECT CARD DETAIL ADJUSTMENTS --- */

.item-details-area {
  padding: 5px 5px 0 5px;
  /* This container now holds everything below the image */
  display: flex;
  flex-direction: column; /* Stack name/price, description, button vertically */
}

.item-name-price {
  display: flex;
  justify-content: space-between; /* Pushes name to left, price to right */
  align-items: baseline; /* Aligns text baselines */
  margin-bottom: 5px;
}

.item-name {
  font-size: 12px;
  font-family: "Copperplate Gothic Bold";
  color: var(--gold-color);
  letter-spacing: 0.5px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.item-price {
  font-size: 14px;
  font-family: "Copperplate Gothic Bold";
  color: var(--gold-color);
  margin-bottom: 0;
  white-space: nowrap; /* Prevent price from wrapping */
}

.name-price-separator {
  height: 1px;
  background-color: #eee;
  margin: 5px 0 8px 0;
}

.item-description {
  /* Description is a block element, takes full width */
  font-size: 10px;
   font-family: "Baskerville";
  color: #666;
  line-height: 1.2;
  margin-bottom: 8px;
  height: 25px; /* Fixed height for consistency */
  overflow: hidden;
  text-overflow: ellipsis; /* Add ellipsis for overflow if needed */
  display: -webkit-box; /* For multi-line ellipsis */
  -webkit-line-clamp: 2; /* Show 2 lines then ellipsis */
  -webkit-box-orient: vertical;
}

.add-btn {
  /* Button is a block element, pushed to the right */
  width: 50px;
  padding: 3px 0;
  background-color: transparent;
  color: var(--gold-color);
  border: 1px solid var(--gold-color);
  border-radius: 15px;
  font-size: 10px;
  font-family: "Baskerville";
  font-weight: normal;
  cursor: pointer;
  text-align: center;
  align-self: flex-end; /* Pushes the button to the right within the column */
  margin-top: auto; /* Pushes the button to the bottom of the card if space allows */
}
/* ---------------------------------------------------------------------- */
/* --- DESKTOP OVERRIDES (Matching image_737261.png) --- */
/* ---------------------------------------------------------------------- */

@media (min-width: 992px) {
  /* Desktop Breakpoint */

  #wrapper {
    max-width: 1400px; /* Wider content area for desktop */
    margin: 0 auto;
  }

  body {
    max-width: none; /* Full width */
    padding: 0;
    background-color: var(--off-white);
  }

  /* 1. Header/Navigation Layout */
  .header {
    max-width: none;
    padding: 40px 60px 20px 60px;
    align-items: center;
    flex-wrap: nowrap;
  }

  .logo-title {
    flex: 0 0 auto;
    margin-right: 40px;
  }

  .logo-image {
    width: 150px;
    height: auto;
  }

  .header-right {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;
  }

  .header-right .main-nav {
    /* Re-using .main-nav for the two right icons */
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 30px;
  }

  .desktop-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  /* Cart Total Styling */
  .cart-total-desktop {
    flex-direction: row;
    align-items: center;
    font-weight: bold;
  }

  .cart-total-desktop img {
    width: 35px;
    height: auto;
    margin-right: 5px;
  }

  .cart-amount {
    color: var(--primary-color);
    font-size: 16px;
    margin-left: 5px;
    white-space: nowrap;
  }

  .account-icon-desktop img {
    width: 30px;
    height: auto;
  }

  /* 2. Search Bar */
  .search-container {
    display: flex;
    flex: 1;
    max-width: 500px;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
  }

  .search-input {
    flex: 1;
    padding: 0 15px;
    border: none;
    font-size: 16px;
    outline: none;
  }

  .search-icon-btn {
    background-color: transparent;
    border: none;
    padding: 0 15px;
    cursor: pointer;
  }

  .search-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
  }

  /* 3. Main Content Area & Toggle Repositioning */
  .main-content-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px 40px 60px;
  }

  .toggle-container {
    flex: 0 0 150px; /* Fixed width sidebar for toggle */
    padding: 0;
    justify-content: flex-start; /* Move toggle to the left */
    flex-direction: row;
    align-items: center;
    margin-top: 10px;
    /* Desktop toggle text styling based on image */
    font-size: 14px;
  }

  .veg-text {
    /* 'All' on desktop */
    color: #333;
  }

  .non-veg-text {
    /* 'Veg' on desktop */
    color: var(--primary-color);
  }

  .menu-sections {
    flex: 1;
    margin-top: 20px;
  }

  /* 4. Desktop Menu Grid (4-Column Layout) */
  .menu-section {
    padding: 20px 0;
    border-bottom: none;
    margin-bottom: 0;
  }

  .coffee-section {
    padding: 20px 30px;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 24px;
    letter-spacing: 3px;
    padding: 10px 0;
    margin-bottom: 10px;
  }

  .coffee-grid {
    grid-template-columns: repeat(4, 1fr); /* Four equal columns for desktop */
    gap: 20px;
  }

  .coffee-item {
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .item-image {
    height: 100px;
    margin-bottom: 10px;
  }

  .add-btn {
    font-size: 12px;
    padding: 8px 0;
  }
}

/* ---------------------------------------------------------------------- */
/* --- SECTION COLLAPSE/EXPAND STYLES (Applies to both mobile and desktop) --- */
/* ---------------------------------------------------------------------- */

/* Initial state for content that should be hidden on load (e.g., Hot Teas) */
.section-content.collapsed {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out,
    padding 0.3s ease-out;
}

/* State for expanded content */
.section-content:not(.collapsed) {
  max-height: 1000px; /* Large enough value to ensure content is visible */
  opacity: 1;
  transition: max-height 0.5s ease-in, opacity 0.5s ease-in;
}

/* Arrow rotation based on state */
.collapse-trigger.arrow-down {
  transform: rotate(0deg);
  transition: transform 0.3s;
}

.collapse-trigger.arrow-up {
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.cart-container {
  padding: 0 15px;
  padding-bottom: 30px;
  background-color: #fcfaf0; /* Using the light creamy background */
  padding-top: 6px;
  margin: 8px;
  border-radius: 10px;
}

.cart-items-wrapper {
  background-color: var(--item-bg);
  border-radius: 12px;
  padding: 10px 15px;
  margin-top: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  /* Add a separator line between items, except the last one */
  border-bottom: 1px solid #f0f0f0;
}

.cart-item:last-child {
  border-bottom: none;
}

.item-visuals {
  flex-shrink: 0;
  margin-right: 15px;
}

.item-image-cart {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f0f0f0;
}
/* Re-using .product-image style from menu screen for the image inside */

.item-details-cart {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.item-name-cart {
  font-family: "Copperplate Gothic Bold";
  font-size: 12px;
  color: #cca353;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.item-price-cart {
  font-family: "Baskerville";
  font-size: 14px;
  color: #cca353;
}

/* --- Quantity Control and Delete Button --- */

.item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--gold-color);
  border-radius: 8px;
  overflow: hidden;
  background-color: #cca353;
}

.qty-btn {
  color: var(--light-text);
  border: none;
  width: 30px;
  height: 30px;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  background-color: #cca353;
}

.qty-btn.minus {
  background-color: #cca353;
  color: var #fff (--light-text);
}

.qty-value {
  padding: 0 10px;
  font-family: "Baskerville";
  font-size: 14px;
  color: white;
}

.delete-btn {
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.delete-icon {
  width: 18px;
  height: 20px;
  /* The delete icon in the image is a simple gray trash icon, 
       you'll need to use a gray image or an icon font here */
}

/* --- Add More Button --- */

.add-more-wrapper {
  background-color: white;
  padding: 15px 0;
  text-align: center; /* Center the button inside the wrapper */
}

/* --- Add More Button (PIXEL PERFECT STYLES inside the new wrapper) --- */
.add-more-btn {
    display: inline-block;
    width: 130px;
    height: 40px;
    padding: 5px 10px;
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 15px;
    box-shadow: none;
    font-size: 16px;
    color: #000;
    font-family: "Baskerville";
    font-weight: normal;
    cursor: pointer;
    text-align: center;
    line-height: 18px;
}
/* --- Subtotal/GST/Total Box --- */

.subtotal-box {
  background-color: #fcfaf0;
  padding: 15px;
  border: 2px;
  border-radius: 12px;
 font-family: "Baskerville";
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  margin: 10px;
}

.subtotal-row {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  font-size: 14px;
  color: #cca353;
}

.total-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 0 0;
  margin-top: 10px;
  border-top: 1px solid var(--accent-color-medium);
  font-size: 18px;
  font-weight: bold;
  color: #cca353;
}

/* --- Fixed Order Footer --- */

.order-footer {
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--item-bg); /* White background */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 15px 25px 15px; /* Extra padding at the bottom for home bar/notch */
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  z-index: 10;
}

.order-total-amount {
  display: flex;
  flex-direction: column;
   font-family: "Baskerville";
  font-size: 12px;
  color: #bb9f61;
}

.final-price {
  font-size: 18px;
  font-weight: bold;
  color: #bb9f61;
  margin-top: 2px;
}

.order-now-btn {
  padding: 10px 10px;
  background-color: #cca353;
  color: var(--light-text);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Copperplate Gothic Bold";
  letter-spacing: 1px;
  cursor: pointer;
}


/* select food modal start */

#selectMoreFoodModal .custom-radio {
  width: 22px;
  height: 22px;
  accent-color: #CCA353; /* Bootstrap Primary Color */
  cursor: pointer;
}
#selectMoreFoodModal .modal-content {
  border-radius: 0px; /* Rounded top corners */
  max-height: 90vh; /* Optional: limit height */
  overflow-y: auto; /* Optional: add scroll if content exceeds height */
}

/* Ensure the modal stays at bottom when shown */
#selectMoreFoodModal.show .modal-dialog {
  margin-top: auto;
  margin-bottom: 0;
}

/* Override Bootstrap's default modal positioning */
#selectMoreFoodModal .modal-backdrop {
  background-color: rgba(0,0,0,0.5); /* Adjust opacity as needed */
}
/* select food modal end */


/* cart quatity css start */
.product-qty input{
  height:unset;
}
.cart-item #quantity {
  height: auto;
  width: 28px;
  text-align: center;
  border: none;
  margin: 0;
  padding: 0;
}
.cart-item #product_quantity {
  height: auto;
  width: 28px;
  text-align: center;
  border: none;
  margin: 0;
  padding: 0;
}
.cart-item .product-qty {
  width: 85px;
  border: 1px solid #CCA353;
  border-radius: 8px;
}
.cart-item .btn-number {
  width: 26px;
  height: 26px;
  line-height: 1;
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 0px;
  color: #CCA353;
  padding: 0;
}
.cart-item input{
  background: transparent;
  color: #CCA353;
}
.cart-item svg{
  font-size: 10px;
}

#selectMoreFoodModal .btn-primary {background:#CCA353;}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--gold-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: #cca353;
}
/* cart quatity css end */
/*##################################################menu page css#######################################################*/
