@font-face {
    font-family: 'NotoSans';
    src: url('../fonts/Noto_Sans/NotoSans-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900; /* Adjust this based on the variable font range */
    font-stretch: 75% 125%; /* Adjust this based on the variable width range */
}
body {
    background-color: #f8f9fa;
    font-family: 'NotoSans', sans-serif; /* Add this font for a stylish look */
}

/* Additional CSS */
.location-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
}
.location-container input[type="text"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.location-container .btn {
    margin-left: 15px;
}
.outlet-list {
    padding: 20px 0;
}
.outlet-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}
.outlet-card:hover {
    transform: scale(1.05);
}
.outlet-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.outlet-details {
    padding: 10px;
}
.outlet-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}
.outlet-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}
/* Container to align items */
.outlet-meta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

/* Style for the distance */
.distance {
    font-size: 14px;
    color: #000000;
    font-weight: bold;

}

/* Style for the rating button */
.rating {
    background-color: #4CAF50; /* Green background */
    color: #fff; /* White text */
    padding: 3px 8px;
    border-radius: 15px; /* Rounded edges */
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 1px; /* Space between star and text */
}

/* General styling for the gap */
.gap {
    color: #ccc; /* Gray color for the pipe symbol */
    font-size: 18px;
    padding: 0 10px; /* Adds space on left and right of the pipe */
}

/* Button styling */
.btn-large {
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 5px;
}

/* Hide the gap on smaller screens */
@media (max-width: 768px) {
    .gap {
        display: none;
    }
}

/* Optional: Customize the star icon */
.rating-star {
    font-size: 12px; /* Adjust star size */
}

.offer-badge {
    background: #28a745;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    margin-top: 10px;
    display: inline-block;
}
/* Header Styling */
/* General Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 20px; /* Adjusted padding for mobile and desktop */
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between logo and location */
}

.header-logo img {
    width: 100px;
    max-width: 100%;
}

.header-location {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-location .location-icon {
    font-size: 18px;
    color: #007bff;
}

.header-location input {
    width: 314px;
    padding: 8px;
    border: 0px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'NotoSans', sans-serif;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between cart and hamburger */
}

.header-menu {
    display: none; /* Hide menu links for mobile */
}

.cart-icon {
    display: flex;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
}

.cart-icon .cart-count {
    background: #ff6f61;
    color: #fff;
    font-size: 12px;
    border-radius: 50%;
    padding: 2px 5px;
    margin-left: 5px;
}

.hamburger {
    display: block; /* Hamburger menu visible for mobile */
    font-size: 24px;
    cursor: pointer;
}

/* Drawer Menu */
.drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 350px;
    height: 100%;
    /*background-color: #fff;*/
    background: linear-gradient(135deg,  #00b7ea 0%,#009ec3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: left 0.3s ease-in-out;
    padding: 20px;
}

.drawer-header {
    display: flex;
    justify-content: flex-end;
}

.drawer-menu {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.drawer-menu a {
    text-decoration: none;
    color: #fafafa;
    margin: 10px 0;
    font-size: 16px;
}

.drawer-search {
    display: block; /* Hide search in drawer */
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .header-location input {
        width: 150px; /* Reduce location input width */
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: nowrap; /* Ensure single row in mobile view */
    }

    .header-left {
        flex: 1; /* Allow space for logo and location */
        display: flex;
        align-items: center;
        gap: 5px; /* Adjust spacing for mobile */
    }

    .header-location input {
        width: 204px; /* Smaller input for mobile */
    }

    .header-right {
        gap: 10px; /* Adjust spacing for cart and menu icon */
    }

    /* Drawer: Only Sign In */
    .drawer-menu a:not(:first-child) {
        display: block; /* Hide other items except Sign In */
    }

    .drawer-menu a:first-child {
        font-size: 18px; /* Adjust font for Sign In */
    }
}


/* Add spacing for the fixed header */
.content {
    padding-top: 80px; /* Adjust based on the header height */
}
/* Cart Icon Badge */
.cart-icon {
    position: relative;
    display: inline-block;
    font-size: 14px;
}

.cart-icon .cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background-color: #ff0000;
    color: #fff;
    font-size: 9px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 50%;
    line-height: 1;
    text-align: center;
    min-width: 8px;
    height: 13px;
}

/* Outlet card styles */
.outlet-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}
.outlet-card:hover {
    transform: scale(1.05);
}
.outlet-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.outlet-details {
    padding: 10px;
}
.outlet-name {
    font-size: 22px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 5px;
}
.outlet-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}
.offer-badge {
    background: #28a745;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    margin-top: 10px;
    display: inline-block;
}
.carousel-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}
/* Adjust padding for carousel items */
.carousel-inner {
    padding: 10px 0; /* Adjust vertical padding */
}

/* Adjust carousel control button size */
.carousel-control-prev, .carousel-control-next {
    width: 5%; /* Adjust width if you want smaller buttons */
    padding: 10px;
}

/* If you want to add more space between the buttons */
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5); /* Adjust background color */
}

.add-btn {
    position: absolute;
    bottom: -14px;
    left: 45%;
    transform: translateX(-50%);
    background-color: #f4f6f5;
    color: #1230AE;
    font-weight: bold;
    border: 1px solid #1230AE;
    padding: 0px 10px;
    border-radius: 5px;
    cursor: pointer;
}
.add-btn:hover {
    background-color: #fff;
}

.customize-text {
    position: absolute;
    bottom: -36px;
    left: 36%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: bold;
    color: #a19a9a;
    text-transform: uppercase;
    display: none; /* Hidden by default */
}

.has-variants .customize-text {
    display: block; /* Show only when the product has variants */
}

    /* Modal Styling */
    .modal-content {
      background: #ffffff; /* Light blue background */
      border: 2px solid #1e90ff; /* Dodger blue border */
      border-radius: 10px;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    }

    .modal-header {
      background: #005491; /* Dodger blue */
      color: #ffffff; /* White text */
      border-bottom: 2px solid #4682b4; /* Steel blue */
    }

    .modal-title {
      font-weight: bold;
      font-size: 1.5rem;
    }

    .btn-close {
      color: #ffffff; /* White close button */
      opacity: 1;
    }

    .modal-body {
        padding: 20px;
        overflow-y: scroll;
        height: 50vh;
    }


    /* Radio Buttons */
    .form-check-input[type="radio"] {
      accent-color: #ff4500; /* Red accent */
    }

    .form-check-label {
      /*font-weight: bold;*/
      color: #000000; /* Blue text */
    }

    .form-check {
      margin-bottom: 15px;
    }

    /* Checkboxes */
    .form-check-input[type="checkbox"] {
      accent-color: #1e90ff; /* Blue accent */
    }

    /* Footer Styling */
    .modal-footer {
      background: #005491; /* Dodger blue */
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #ffffff; /* White text */
    }

    /* Quantity Controls */
    .quantity-control button {
      background: #e31837; /* Red buttons */
      border: none;
      color: white;
      font-weight: bold;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      cursor: pointer;
      text-align: center;
    }

    .quantity-control button:hover {
      background: #dc143c; /* Crimson hover */
    }

    .quantity-control input {
        border: 1px solid #1e90ff;
        color: #1e90ff;
        text-align: center;
        font-weight: bold;
        margin: 0 8px;
        border-radius: 5px;
        width: 55px;
        height: 29px;
    }

    /* Total Price Styling */
    #totalPrice {
      font-weight: bold;
      font-size: 1.2rem;
      color: #ffffff; /* White text */
    }

    /* General Button Styling */
    .btn-primary {
      background: #1e90ff;
      border-color: #1e90ff;
      color: #ffffff;
    }

    .btn-primary:hover {
      background: #4682b4; /* Steel blue */
      border-color: #4682b4;
    }

    /* Customize Modal Responsiveness */
    @media (max-width: 768px) {
      .modal-content {
        padding: 10px;
      }

      .modal-footer {
        flex-wrap: wrap;
        gap: 10px;
      }

      .quantity-control {
        flex: 1;
      }

      #totalPrice {
        text-align: center;
        flex: 1;
      }
    }


/* Customize Modal Responsiveness */
@media (max-width: 768px) {
  .modal-content {
    padding: 10px;
  }

  .modal-footer {
    flex-wrap: wrap;
    gap: 10px;
  }

  .quantity-control {
    flex: 1;
  }

  #totalPrice {
    text-align: center;
    flex: 1;
  }
}
/* Cart Button */
.btn-cart {
  background: #e31837; /* Red background */
  color: #ffffff; /* White text */
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-cart:hover {
  background: #dc143c; /* Crimson hover */
  transform: scale(1.05); /* Slight zoom effect */
}

.btn-cart span {
  font-weight: bold;
  font-size: 1.2rem;
}
    /* General Styling */
    .checkout-page {
      display: flex;
      justify-content: space-between;
      padding: 20px;
      font-family: Arial, sans-serif;
    }

    .checkout-left {
      flex: 1;
      margin-right: 20px;
    }

    .checkout-right {
      flex: 2px;
      background: #f9f9f9;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    /* Accordion Styling */
    .accordion-item {
      margin-bottom: 10px;
    }

    .accordion-header {
      background: #1e90ff;
      color: #ffffff;
      padding: 15px;
      cursor: pointer;
      border-radius: 5px;
      font-size: 1rem;
      font-weight: bold;
    }

    .accordion-header.active {
      background: #ff4500;
    }

    .accordion-content {
      display: none;
      padding: 15px;
      background: #f4f4f4;
      border: 1px solid #e0e0e0;
      border-top: none;
      border-radius: 0 0 5px 5px;
    }

    .accordion-content.active {
      display: block;
    }

    /* Cart Right Section */
    .cart-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .cart-item-image {
      width: 30px;
      height: 105px;
      border-radius: 10px;
      object-fit: cover;
      margin-right: 10px;
    }

    .cart-item-details {
      flex: 1;
    }

    .quantity-control {
      display: flex;
      align-items: center;
    }

    .quantity-btn {
      background: #ff4500;
      color: #ffffff;
      border: none;
      width: 30px;
      height: 30px;
      border-radius: 5px;
      cursor: pointer;
      margin: 0 5px;
    }

    .quantity-btn:hover {
      background: #dc143c;
    }

    .bill-details h4,
    .to-pay h4 {
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .bill-details div,
    .to-pay h2 {
      display: flex;
      justify-content: space-between;
      margin-bottom: 5px;
    }

    .to-pay h2 {
      color: #ff4500;
    }

    /* Button Styling */
    .btn {
      display: inline-block;
      padding: 3px 10px;
      font-size: 1rem;
      border-radius: 5px;
      cursor: pointer;
      text-align: center;
    }

    .btn-primary {
      background: #005491;
      color: #ffffff;
      border: none;
    }
    .border-primary{
      font-size: 14px;
      color: #000;
  
    }
    .phone_text{
        font-weight: 600;
    }

    .btn-outline {
      background: transparent;
      color: #1e90ff;
      border: 2px solid #1e90ff;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .checkout-page {
        flex-direction: column;
      }

      .checkout-left,
      .checkout-right {
        width: 100%;
        margin: 0 0 20px 0;
      }
    }
.coupon_text{
    color: #f05b0b;
    font-weight: bold;
    font-size:20px;
}
.strike-through {
    text-decoration: line-through;
    color:#9ea8b1 !important;
}
.suggestion_box{
    border: solid 1px #00000000;
    outline: 0;
    resize: none;
    width: 100%;
    padding: 16px 6px 4px 16px;
    color: #3d4152;
    font-weight: 400;
    font-size: 13px;
    background: #ededed;
}
.custom-bottom {
    background-color: #005491; /* Set the background color */
    margin-left: 115px; /* Add margin to the left */
    margin-right: 115px; /* Add margin to the right */
}

.custom-bottom .btn-primary {
    background-color: #007bff; /* Button color */
    border-color: #007bff; /* Button border color */
}

.custom-bottom .btn-primary:hover {
    background-color: #0056b3; /* Button hover effect */
    border-color: #0056b3;
}

.custom-bottom .badge-primary {
    background-color: #003f73; /* Change badge background color */
}

/* Optional: Adjust the font size for better visibility on smaller screens */
@media (max-width: 768px) {
    .custom-bottom {
        margin-left: 10px; /* Reduce margin for small screens */
        margin-right: 10px;
    }
}
    fieldset {
        background: #fff;
        border: 2px solid #ddd;
    }
/* Footer */
.site-footer {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0ba1fc;
    border-top: 2px solid #ddd;
    padding: 2px 0;
    text-align: center;
    font-family: Arial, sans-serif;
    z-index: 1000;
    height: 70px;
}
/* Page wrapper to ensure full height */
#page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Content section should take remaining space */
#page-content {
    flex-grow: 1;
}
/* Push content up so the footer doesn't overlap */
.main-content {
    margin-bottom: 60px; /* Adjust according to footer height */
}

.footer-container {
    justify-content: center;
}

.footer-menu {
    display: flex;
    gap: 30px;
    padding: 10px;
    justify-content: space-evenly;
}

.footer-item {
    text-align: center;
    color: #092759;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}

.footer-item i {
    display: block;
    font-size: 22px;
    margin-bottom: 4px;
}

.footer-item:hover {
    color: #fff1b7;
}

.footer-bottom {
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}

.text-white {
    color: #fff;
}

/* Mobile View */
@media (max-width: 768px) {
    .footer-container {
        justify-content: space-around;
    }

    .footer-menu {
        width: 100%;
        justify-content: space-evenly;
    }

    .footer-item {
        font-size: 12px;
    }

    .footer-bottom {
        font-size: 10px;
    }
}
