@import "https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap";
*, :before, :after {
  box-sizing: border-box;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

img, picture, video, canvas, svg {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
  appearance: none;
  outline: none;
}

:root {
  --primary-color: #2563eb;
  --primary-hover: #1d4ed8;
  --background-color: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-main: "Poppins", sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --transition-fast: .2s ease;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--background-color);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

#wrapper {
  flex-direction: column;
  min-height: 100vh;
  display: flex;

  & .main-content {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    overflow-x: clip;
  }
}

nav {
  backdrop-filter: blur(10px);
  z-index: 999;
  background-color: #fffffff2;
  border-bottom: 1px solid #f1f1f6;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
  position: sticky;
  top: 0;
  box-shadow: 0 4px 12px #0000000d;

  & .head-wrapper {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    min-height: 5rem;
    padding: 0 1.5rem;
    display: flex;

    & .logo-link {
      text-decoration: none;
    }

    & .logo-con {
      cursor: pointer;
      align-items: center;
      gap: 12px;
      display: flex;

      & .img-con {
        align-items: center;
        height: 45px;
        display: flex;

        & img {
          object-fit: contain;
          border-radius: 10px;
          width: auto;
          height: 100%;
        }
      }

      & p {
        -webkit-text-fill-color: transparent;
        letter-spacing: -.5px;
        background: linear-gradient(90deg, #fc8019, #fd9944);
        -webkit-background-clip: text;
        margin: 0;
        font-family: Poppins, sans-serif;
        font-size: 1.6rem;
        font-weight: 800;
      }
    }

    & .desktop-menu {
      margin-left: auto;
      margin-right: 32px;

      & ul {
        align-items: center;
        gap: .5rem;
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;

        & li a {
          color: #02060cb3;
          background-color: #0000;
          border-radius: 50px;
          justify-content: center;
          align-items: center;
          padding: 10px 24px;
          font-size: 1rem;
          font-weight: 700;
          text-decoration: none;
          transition: all .3s cubic-bezier(.2, .8, .2, 1);
          display: flex;

          &:hover {
            color: #fff;
            background-color: #02060ceb;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px #282c3f33;
          }

          &:active {
            transform: translateY(1px);
          }
        }
      }
    }

    & .nav-actions {
      align-items: center;
      gap: 16px;
      display: flex;

      & .cart-icon-btn {
        color: #02060ceb;
        background-color: #f8fafc;
        border: 1px solid #02060c0d;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        width: 48px;
        height: 48px;
        text-decoration: none;
        transition: all .2s;
        display: flex;
        position: relative;

        & .icon {
          font-size: 1.3rem;
        }

        & .cart-badge {
          color: #fff;
          background-color: #fc8019;
          border: 2px solid #fff;
          border-radius: 50%;
          justify-content: center;
          align-items: center;
          width: 20px;
          height: 20px;
          font-size: .75rem;
          font-weight: 800;
          animation: .3s cubic-bezier(.175, .885, .32, 1.275) popIn;
          display: flex;
          position: absolute;
          top: -2px;
          right: -2px;
          box-shadow: 0 2px 4px #fc80194d;
        }

        &:hover {
          color: #fff;
          background-color: #02060ceb;
          transform: translateY(-2px);
          box-shadow: 0 6px 12px #0000001a;
        }
      }

      & .mobile-menu-btn {
        color: #02060ceb;
        cursor: pointer;
        background: none;
        border: none;
        padding: 4px;
        font-size: 1.8rem;
        transition: transform .2s;
        display: none;

        &:active {
          transform: scale(.9);
        }
      }
    }
  }

  & .mobile-dropdown {
    background-color: #fff;
    border-top: 1px solid #f1f1f6;
    width: 100%;
    padding: 16px 0;
    animation: .3s forwards slideDown;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 10px 20px #0000000d;

    & ul {
      flex-direction: column;
      margin: 0;
      padding: 0;
      list-style: none;
      display: flex;

      & li a {
        color: #02060ceb;
        border-left: 4px solid #0000;
        padding: 16px 24px;
        font-size: 1.1rem;
        font-weight: 700;
        text-decoration: none;
        transition: all .2s;
        display: block;

        &:hover {
          color: #fc8019;
          background-color: #f8fafc;
          border-left: 4px solid #fc8019;
        }
      }
    }
  }

  @media (width <= 768px) {
    & .head-wrapper {
      & .desktop-menu {
        display: none;
      }

      & .nav-actions {
        & .mobile-menu-btn {
          justify-content: center;
          align-items: center;
          display: flex;
        }
      }
    }

    & .mobile-dropdown {
      display: block;
    }
  }

  @media (width <= 480px) {
    & .head-wrapper {
      min-height: 4rem;
      padding: 0 .8rem;

      & .logo-con {
        gap: 6px;

        & .img-con {
          height: 32px;
        }

        & p {
          font-size: 1.15rem;
        }
      }
    }

    & .nav-actions {
      gap: 8px;

      & .cart-icon-btn {
        width: 38px;
        height: 38px;

        & .icon {
          font-size: 1.1rem;
        }

        & .cart-badge {
          width: 18px;
          height: 18px;
          font-size: .65rem;
        }
      }

      & .mobile-menu-btn {
        padding: 2px;
        font-size: 1.5rem;
      }
    }
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  80% {
    transform: scale(1.2);
  }

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

main {
  & .main-wrapper {
    background-color: #f8fafc;
    max-width: 1300px;
    min-height: 100vh;
    margin-left: auto;
    margin-right: auto;
  }
}

.search-wrapper {
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 350px;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px #00000026;

  & .bg-video {
    object-fit: cover;
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  & .video-overlay {
    z-index: 2;
    background: linear-gradient(135deg, #0009 0%, #0006 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  & .search-form {
    z-index: 3;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
    display: flex;
    position: relative;

    & h2 {
      color: #fff;
      text-shadow: 0 2px 10px #00000080;
      text-align: center;
      letter-spacing: -.5px;
      margin: 0;
      font-size: 2rem;
      font-weight: 800;
    }

    & .input-grp {
      background-color: #fff;
      border-radius: 100px;
      width: 100%;
      padding: 6px;
      transition: transform .2s, box-shadow .2s;
      display: flex;
      box-shadow: 0 8px 25px #00000040;

      &:focus-within {
        transform: scale(1.02);
        box-shadow: 0 12px 30px #ea580c66;
      }

      & input {
        color: #1f2937;
        letter-spacing: .5px;
        background: none;
        border: none;
        outline: none;
        flex: 1;
        padding: 12px 24px;
        font-size: 1.05rem;
        font-weight: 500;

        &::placeholder {
          color: #9ca3af;
          font-weight: 400;
        }
      }

      & button {
        color: #fff;
        cursor: pointer;
        background-color: #ea580c;
        border: none;
        border-radius: 100px;
        outline: none;
        justify-content: center;
        align-items: center;
        padding: 12px 32px;
        font-size: 1rem;
        font-weight: 700;
        transition: background-color .2s, transform .1s;
        display: flex;

        & .btn-icon {
          display: none;
        }

        &:hover {
          background-color: #c2410c;
        }

        &:active {
          transform: scale(.95);
        }
      }
    }
  }

  @media (width <= 576px) {
    border-radius: 16px;
    height: 260px;

    & .search-form {
      gap: 12px;
      padding: 0 12px;

      & h2 {
        font-size: 1.4rem;
      }

      & .input-grp {
        padding: 4px;

        & input {
          padding: 10px 12px;
          font-size: .9rem;
        }

        & button {
          padding: 10px 16px;
          font-size: 1.1rem;

          & .btn-text {
            display: none;
          }

          & .btn-icon {
            display: block;
          }
        }
      }
    }
  }

  @media (width <= 350px) {
    & .search-form {
      & h2 {
        font-size: 1.15rem;
      }

      & .input-grp {
        & input {
          padding: 8px 10px;
          font-size: .8rem;
        }

        & button {
          padding: 8px 14px;
          font-size: .85rem;
        }
      }
    }
  }
}

.promoted-restro-card {
  transition: transform .2s ease-in-out;
  position: relative;
}

.promoted-restro-card:hover .restro-card {
  transform: scale(.97);
}

.promoted-restro-card label {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  z-index: 10;
  pointer-events: none;
  background-color: #1e2022e6;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: .75rem;
  font-weight: 600;
  position: absolute;
  top: 12px;
  left: 12px;
  box-shadow: 0 4px 6px #00000026;
}

.restro-card {
  cursor: pointer;
  background: #fff;
  border-radius: 16px;
  width: 330px;
  transition: transform .2s ease-in-out;
  overflow: hidden;
}

.restro-card:hover {
  transform: scale(.97);
}

.restro-card figure {
  border-radius: 16px;
  width: 100%;
  height: 182px;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.restro-card figure:after {
  content: "";
  z-index: 1;
  background: linear-gradient(to top, #000c 0%, #0000 100%);
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.restro-card figure img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transition: transform .3s ease-in-out;
}

.restro-card:hover figure img {
  transform: scale(1.06);
}

.restro-card figcaption {
  color: #fffffff2;
  text-transform: uppercase;
  letter-spacing: -.5px;
  z-index: 2;
  font-size: 1.35rem;
  font-weight: 800;
  position: absolute;
  bottom: 12px;
  left: 12px;
}

.restro-details {
  padding: 12px 8px 4px;
}

.restro-name {
  color: #1c1c1c;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 0 4px;
  font-size: 1.15rem;
  font-weight: 700;
  overflow: hidden;
}

.rating-time {
  color: #363636;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
  font-size: .95rem;
  font-weight: 600;
  display: flex;
}

.star-icon {
  color: #fff;
  background-color: #24963f;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  font-size: .75rem;
  display: inline-flex;
}

.cuisine, .location {
  color: #696969;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 2px;
  font-size: .9rem;
  overflow: hidden;
}

.resturant-wrapper {
  margin-top: 20px;

  & #header {
    z-index: 100;
    background-color: #fff;
    border-bottom: 1px solid #02060c14;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    margin-bottom: 24px;
    margin-left: -16px;
    margin-right: -16px;
    padding: 0 16px;
    display: flex;
    position: sticky;
    top: 80px;
    box-shadow: none !important;
    border-radius: 0 !important;

    & .available-restros {
      flex-shrink: 0;
      align-items: center;
      display: flex;

      & p {
        color: #02060ceb;
        white-space: nowrap;
        margin: 0;
        font-size: 1.4rem;
        font-weight: 800;
      }
    }

    & .filters {
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
      align-items: center;
      display: flex;
      overflow-x: auto;

      &::-webkit-scrollbar {
        display: none;
      }

      & ul {
        align-items: center;
        column-gap: 12px;
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;

        &:after {
          content: "";
          padding-right: 16px;
        }

        & li {
          flex-shrink: 0;
        }

        & li button {
          white-space: nowrap;
          color: #02060cbf;
          cursor: pointer;
          background-color: #fff;
          border: 1px solid #e2e2e7;
          border-radius: 18px;
          padding: 8px 16px;
          font-size: 14px;
          font-weight: 600;
          transition: all .2s ease-in-out;

          &:hover {
            background-color: #f8fafc;
            border-color: #d4d5d9;
          }

          &:active {
            transform: scale(.95);
          }

          &.active-btn {
            color: #fff;
            background-color: #02060ceb;
            border-color: #02060ceb;
            box-shadow: 0 4px 12px #00000026;

            &:hover {
              background-color: #000;
            }
          }
        }
      }
    }

    @media (width <= 576px) {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      height: auto;
      margin-left: -16px;
      margin-right: -16px;
      padding: 16px 0 12px;
      top: 64px;

      & .available-restros p {
        padding: 0 16px;
        font-size: 1.25rem;
      }

      & .filters {
        width: 100%;
        padding: 0 16px 4px;

        & ul li button {
          padding: 8px 16px;
          font-size: 13px;
        }
      }
    }
  }

  & .resturant-cards {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px 24px;
    padding-top: 20px;
    padding-bottom: 20px;
    display: grid;
  }

  & .restro-card {
    cursor: pointer;
    background: #fff;
    border-radius: 16px;
    width: 100%;
    transition: transform .2s ease-in-out, box-shadow .2s ease-in-out;
    overflow: hidden;

    &:hover {
      transform: scale(.97);
    }

    & figure {
      border-radius: 16px;
      width: 100%;
      height: 180px;
      margin: 0;
      position: relative;
      overflow: hidden;

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

.shimmer-card {
  background: #fff;
  border-radius: 16px;
  width: 294px;
  margin-bottom: 32px;
  overflow: hidden;
}

@keyframes shimmerWave {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.shimmer-figure, .shimmer-line {
  background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%) 0 0 / 200% 100%;
  animation: 1.4s linear infinite shimmerWave;
}

.shimmer-figure {
  border-radius: 16px;
  width: 100%;
  height: 165px;
}

.shimmer-details {
  flex-direction: column;
  gap: 10px;
  padding: 20px 10px;
  display: flex;
}

.shimmer-line {
  border-radius: 4px;
  height: 14px;
}

.shimmer-title {
  width: 70%;
  height: 18px;
  margin-bottom: 4px;
}

.shimmer-meta {
  width: 45%;
  height: 14px;
}

.shimmer-cuisine {
  width: 85%;
  height: 12px;
}

.shimmer-location {
  width: 55%;
  height: 12px;
}

footer {
  & .footer-wrapper {
    color: #fff;
    background-color: #000;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 3rem;
    display: flex;
  }
}

.offline-wrapper {
  background-color: #f8f9fa;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  font-family: Poppins, sans-serif;
  display: flex;
}

.offline-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  display: flex;
}

.animated-icon-container {
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
  display: flex;
  position: relative;
}

.radar-pulse {
  z-index: 1;
  background-color: #fc801933;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: 2s cubic-bezier(.4, 0, .2, 1) infinite pulse;
  position: absolute;
}

@keyframes pulse {
  0% {
    opacity: .8;
    transform: scale(.8);
  }

  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

.icon-box {
  z-index: 2;
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  animation: 3s ease-in-out infinite float;
  display: flex;
  position: relative;
  box-shadow: 0 10px 25px #fc80194d;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

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

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

.food-offline-svg {
  color: #282c3f;
  width: 40px;
  height: 40px;
}

.slash-line {
  stroke: #fc8019;
  stroke-width: 3px;
}

.offline-title {
  color: #282c3f;
  letter-spacing: -.5px;
  margin: 0 0 10px;
  font-size: 2rem;
  font-weight: 800;
}

.offline-subtitle {
  color: #686b78;
  margin: 0 0 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.retry-btn {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, #fc8019, #fd9944);
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 15px #fc80194d;
}

.retry-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #fc801966;
}

.retry-btn:active {
  transform: translateY(1px);
  box-shadow: 0 3px 10px #fc80194d;
}

.slider-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px 16px;
  font-family: Poppins, sans-serif;

  & .slider {
    & .header {
      justify-content: space-between;
      align-items: center;
      padding: 10px 0 20px;
      display: flex;

      & .title {
        color: #282c3f;
        margin: 0;
        font-size: 20px;
        font-weight: 800;
      }

      & .slider-btns {
        column-gap: 12px;
        display: flex;

        & .nav-btn {
          color: #282c3f;
          cursor: pointer;
          background-color: #e2e2e7;
          border: none;
          border-radius: 50%;
          justify-content: center;
          align-items: center;
          width: 32px;
          height: 32px;
          transition: background-color .2s, opacity .2s;
          display: flex;

          &:hover:not(:disabled) {
            background-color: #d4d5d9;
          }

          &:active:not(:disabled) {
            transform: scale(.95);
          }

          &:disabled {
            opacity: .5;
            cursor: not-allowed;
          }
        }
      }
    }

    & .slider-viewport {
      scroll-behavior: smooth;
      align-items: center;
      column-gap: 16px;
      padding-bottom: 10px;
      display: flex;
      overflow-x: auto;

      &::-webkit-scrollbar {
        display: none;
      }

      -ms-overflow-style: none;
      scrollbar-width: none;

      & .offer-card {
        background-color: #fff;
        border: 1px solid #e2e2e7;
        border-radius: 12px;
        flex-shrink: 0;
        align-items: center;
        column-gap: 12px;
        min-width: 270px;
        padding: 12px 16px;
        display: flex;
        box-shadow: 0 2px 8px #00000005;

        & .offer-img {
          flex-shrink: 0;
          width: 44px;
          height: 44px;

          & img {
            object-fit: contain;
            width: 100%;
            height: 100%;
          }
        }

        & .offer-detail {
          flex-direction: column;
          justify-content: center;
          display: flex;

          & .offer-header {
            color: #282c3f;
            margin-bottom: 4px;
            font-size: 15px;
            font-weight: 800;
          }

          & .coupon-code {
            color: #93959f;
            text-transform: uppercase;
            font-size: 11px;
            font-weight: 700;
          }
        }
      }
    }
  }
}

.menu-shimmer-wrapper {
  box-sizing: border-box;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
}

.animate-shimmer {
  background: #e2e4e8 linear-gradient(to right, #e2e4e8 0%, #f0f2f5 20%, #e2e4e8 40% 100%) 0 0 / 1000px 100% no-repeat;
  animation: 1.5s linear infinite forwards shimmerEffect;
}

@keyframes shimmerEffect {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

.shimmer-breadcrumb {
  border-radius: 4px;
  width: 25%;
  height: 12px;
  margin-bottom: 10px;
}

.shimmer-title {
  border-radius: 8px;
  width: 40%;
  height: 32px;
  margin-bottom: 5px;
}

.shimmer-subtitle {
  border-radius: 6px;
  width: 20%;
  height: 24px;
  margin-top: 10px;
}

.shimmer-line {
  border-radius: 4px;
  height: 14px;
  margin-bottom: 12px;
}

.shimmer-line.short {
  width: 40%;
}

.shimmer-line.medium {
  width: 60%;
}

.shimmer-line.long {
  width: 80%;
}

.shimmer-info-card {
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 20px 20px 30px 30px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 160px;
  padding: 20px;
  display: flex;
}

.shimmer-offers-slider {
  gap: 15px;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.shimmer-offer-card {
  border-radius: 16px;
  flex: 1;
  min-width: 280px;
  height: 85px;
}

.shimmer-menu-divider {
  border-radius: 4px;
  width: 100px;
  height: 12px;
  margin: 20px auto;
}

.shimmer-search-bar {
  border-radius: 12px;
  width: 100%;
  height: 48px;
}

.shimmer-filters {
  gap: 12px;
  margin-top: 5px;
  display: flex;
}

.shimmer-filter-pill {
  border-radius: 20px;
  width: 90px;
  height: 36px;
}

.shimmer-menu-list {
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
  display: flex;
}

.shimmer-menu-item {
  border-bottom: 1px solid #f0f0f0;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 30px;
  display: flex;
}

.shimmer-item-details {
  flex: 1;
  padding-right: 20px;
}

.shimmer-item-image {
  border-radius: 16px;
  flex-shrink: 0;
  width: 120px;
  height: 120px;
}

@media (width <= 600px) {
  .shimmer-breadcrumb {
    width: 40%;
  }

  .shimmer-title {
    width: 60%;
  }

  .shimmer-subtitle {
    width: 40%;
  }

  .hide-mobile {
    display: none;
  }

  .shimmer-offer-card {
    min-width: 80%;
  }

  .shimmer-item-image {
    width: 100px;
    height: 100px;
  }
}

.restaurant-info-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 16px;
  font-family: Poppins, sans-serif;

  & .breadcrumb {
    color: #93959f;
    letter-spacing: .2px;
    margin-bottom: 24px;
    font-size: 10px;

    & span {
      cursor: pointer;

      &:hover {
        color: #282c3f;
      }
    }

    & .current {
      color: #282c3f;
    }
  }

  & .restaurant-title {
    color: #282c3f;
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 800;
  }

  & .info-card-wrapper {
    background: linear-gradient(#fff, #e9ecee);
    border-radius: 24px;
    padding-bottom: 16px;

    & .info-card {
      background-color: #fff;
      border: 1px solid #e2e2e7;
      border-radius: 20px;
      padding: 20px;
      box-shadow: 0 4px 12px #0000000a;

      & .rating-price-row {
        color: #3e4152;
        align-items: center;
        gap: 8px;
        font-size: 15px;
        font-weight: 700;
        display: flex;

        & .rating-badge {
          background-color: #118a27;
          border-radius: 50%;
          justify-content: center;
          align-items: center;
          width: 20px;
          height: 20px;
          display: flex;
        }

        & .dot {
          color: #93959f;
        }
      }

      & .cuisines {
        color: #fc8019;
        cursor: pointer;
        margin-top: 8px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: underline #fc8019;
      }

      & .timeline-section {
        border-top: 1px solid #f0f0f5;
        gap: 12px;
        margin-top: 16px;
        padding-top: 16px;
        display: flex;

        & .timeline-graphics {
          flex-direction: column;
          align-items: center;
          padding-top: 4px;
          display: flex;

          & .dot-top {
            background-color: #c4c4c4;
            border-radius: 50%;
            width: 7px;
            height: 7px;
          }

          & .line {
            background-color: #e2e2e7;
            width: 1px;
            height: 22px;
            margin: 2px 0;
          }

          & .dot-bottom {
            background-color: #c4c4c4;
            border-radius: 50%;
            width: 7px;
            height: 7px;
          }
        }

        & .timeline-details {
          flex-direction: column;
          gap: 14px;
          font-size: 13px;
          display: flex;

          & .outlet-info {
            & .label {
              color: #282c3f;
              margin-right: 8px;
              font-weight: 600;
            }

            & .value {
              color: #93959f;
              cursor: pointer;
            }
          }

          & .time-info {
            color: #282c3f;
            font-weight: 600;
          }
        }
      }
    }
  }
}

.restaurant-menu-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px 80px;
  position: relative;

  & .menu-title-separator {
    justify-content: center;
    align-items: center;
    margin: 32px 0 24px;
    display: flex;

    & .separator-text {
      color: #02060c99;
      letter-spacing: 3px;
      margin: 0 16px;
      font-size: .95rem;
      font-weight: 500;
    }

    & .separator-line {
      background-color: #02060c26;
      flex-grow: 0;
      width: 30px;
      height: 1px;
    }
  }

  & .menu-filters {
    gap: 12px;
    margin-bottom: 20px;
    display: flex;

    & .filter-btn {
      cursor: pointer;
      background: #fff;
      border: 1px solid #e2e2e7;
      border-radius: 18px;
      align-items: center;
      gap: 8px;
      height: 36px;
      padding: 6px 12px;
      transition: all .2s;
      display: flex;
      box-shadow: 0 2px 4px #0000000a;

      &:hover {
        background: #f1f1f6;
      }

      &.bestseller-btn {
        color: #02060ceb;
        font-size: .85rem;
        font-weight: 600;

        &.active {
          color: #0f8a65;
          background-color: #f1fcf8;
          border-color: #0f8a65;

          &:after {
            content: "✕";
            margin-left: 4px;
            font-size: .8rem;
            font-weight: 800;
          }
        }
      }

      &.toggle-btn {
        justify-content: flex-start;
        width: 66px;
        padding: 0;
        position: relative;

        &:before {
          content: "";
          z-index: 1;
          background-color: #e2e2e7;
          border-radius: 6px;
          width: 34px;
          height: 12px;
          transition: background-color .3s;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
        }

        & .veg-icon {
          z-index: 2;
          background-color: #fff;
          transition: transform .3s cubic-bezier(.4, 0, .2, 1);
          position: relative;
          left: 8px;
        }

        &.active .veg-icon {
          transform: translateX(30px);
        }

        &.veg.active {
          border-color: #0f8a65;

          &:before {
            background-color: #0f8a65;
          }
        }

        &.non-veg.active {
          border-color: #e43b4f;

          &:before {
            background-color: #e43b4f;
          }
        }
      }
    }

    & .veg-icon {
      border: 1px solid;
      border-radius: 4px;
      justify-content: center;
      align-items: center;
      width: 18px;
      height: 18px;
      margin: 0;
      display: flex;

      &.veg {
        border-color: #0f8a65;

        & .circle {
          background-color: #0f8a65;
          border-radius: 50%;
          width: 10px;
          height: 10px;
        }
      }

      &.non-veg {
        border-color: #e43b4f;

        & .circle {
          background-color: #e43b4f;
          border-radius: 50%;
          width: 10px;
          height: 10px;
        }
      }
    }
  }

  & .filter-divider {
    border: none;
    border-bottom: 1px solid #02060c1a;
    margin: 0 0 16px;
  }

  & .menu-categories-container {
    width: 100%;
  }

  & .empty-menu-state {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    animation: .3s ease-in-out fadeIn;
    display: flex;

    & svg {
      margin-bottom: 24px;
    }

    & h3 {
      color: #02060ceb;
      margin: 0 0 8px;
      font-size: 1.2rem;
      font-weight: 700;
    }

    & p {
      color: #02060c99;
      max-width: 280px;
      margin: 0;
      font-size: .9rem;
      line-height: 1.4;
    }
  }

  & .floating-menu-btn-container {
    z-index: 100;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);

    & .fab-btn {
      color: #fff;
      cursor: pointer;
      letter-spacing: 1px;
      background-color: #02060ceb;
      border: none;
      border-radius: 30px;
      align-items: center;
      gap: 8px;
      padding: 12px 20px;
      font-size: .85rem;
      font-weight: 700;
      transition: transform .2s;
      display: flex;
      box-shadow: 0 4px 12px #0000004d;

      &:hover {
        transform: scale(1.05);
      }
    }
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.item-card {
  background-color: #f8fafc;
  border-bottom: 1px solid #e0e0e0;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 16px;
  transition: all .3s;
  display: flex;

  &.cart-version {
    background-color: #fff;
    border-bottom: none;
    border-radius: 16px;
    margin-bottom: 8px;
    padding: 16px;
    box-shadow: 0 2px 8px #0000000a;

    @media (width <= 480px) {
      padding: 12px;

      & .item-details {
        padding-right: 12px;

        & .item-name {
          font-size: 1rem;
        }

        & .item-price {
          font-size: .95rem;
        }
      }

      & .item-image-section {
        width: 100px;

        & .image-container {
          width: 100px;
          height: 86px;
        }

        & .add-btn-container {
          & .add-btn {
            width: 90px;
            height: 34px;
            padding: 0 8px;
            font-size: .95rem;
          }
        }
      }
    }
  }

  & .item-details {
    flex: 1;
    padding-right: 20px;

    & .veg-icon {
      border: 1px solid;
      border-radius: 2px;
      justify-content: center;
      align-items: center;
      width: 14px;
      height: 14px;
      margin-bottom: 6px;
      display: flex;

      &.veg {
        border-color: #0f8a65;
      }

      &.veg .circle {
        background-color: #0f8a65;
      }

      &.non-veg {
        border-color: #e43b4f;
      }

      &.non-veg .circle {
        background-color: #e43b4f;
      }

      & .circle {
        border-radius: 50%;
        width: 8px;
        height: 8px;
      }
    }

    & .item-name {
      color: #3e4152;
      margin: 0 0 4px;
      font-size: 1.15rem;
      font-weight: 700;
    }

    & .item-price {
      color: #3e4152;
      margin: 0 0 12px;
      font-size: 1rem;
      font-weight: 500;
    }

    & .item-desc {
      color: #282c3f;
      opacity: .6;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      margin: 0;
      font-size: .85rem;
      line-height: 1.3;
      display: -webkit-box;
      overflow: hidden;
    }
  }

  & .item-image-section {
    flex-direction: column;
    align-items: center;
    width: 118px;
    display: flex;
    position: relative;

    & .image-container {
      border-radius: 8px;
      width: 118px;
      height: 96px;
      overflow: hidden;

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

      & .no-image-placeholder {
        background-color: #f6f6f6;
        width: 100%;
        height: 100%;
      }
    }

    & .add-btn-container {
      flex-direction: column;
      align-items: center;
      display: flex;
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);

      & .add-btn {
        box-sizing: border-box;
        color: #1ea32a;
        cursor: pointer;
        text-transform: uppercase;
        background-color: #fff;
        border: 1px solid #d4d5d9;
        border-radius: 8px;
        justify-content: space-between;
        align-items: center;
        width: 100px;
        height: 38px;
        padding: 0 12px;
        font-size: 1.1rem;
        font-weight: 800;
        transition: all .2s;
        display: flex;
        box-shadow: 0 4px 10px #0000001a;

        &.justify-center {
          justify-content: center;
        }

        &:hover {
          background-color: #f8fafc;
          transform: translateY(-2px);
          box-shadow: 0 6px 14px #00000026;
        }

        &:active {
          transform: translateY(1px);
          box-shadow: 0 2px 4px #0000001a;
        }
      }
    }
  }

  @media (width <= 480px) {
    padding: 16px 12px;

    & .item-details {
      padding-right: 12px;

      & .item-name {
        font-size: 1rem;
      }
    }

    & .item-image-section {
      width: 100px;

      & .image-container {
        width: 100px;
        height: 86px;
      }

      & .add-btn-container .add-btn {
        width: 90px;
        height: 34px;
        padding: 0 8px;
        font-size: .95rem;
      }
    }
  }
}

.item-category-container {
  background-color: #f8fafc;

  & .category-header {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    background-color: #0000;
    justify-content: space-between;
    align-items: center;
    padding: 24px 16px;
    display: flex;

    & .category-title {
      color: #02060ceb;
      font-size: 1.15rem;
      font-weight: 800;
    }

    & .category-arrow {
      justify-content: center;
      align-items: center;
      transition: transform .3s;
      display: flex;

      &.rotate {
        transform: rotate(180deg);
      }
    }
  }

  & .category-body {
    padding-left: 16px;
    padding-right: 16px;
  }

  & .category-divider {
    background-color: #f1f1f6;
    width: 100%;
    height: 16px;
  }

  &.is-nested {
    & .category-header {
      padding: 16px;

      & .category-title {
        font-size: 1rem;
        font-weight: 700;
      }
    }

    & .nested-thin-line {
      background-color: #02060c1a;
      width: calc(100% - 32px);
      height: 1px;
      margin: 0 16px;
      transition: width .35s cubic-bezier(.4, 0, .2, 1);

      &.active {
        width: 160px;
      }
    }
  }
}

.nested-item-category-wrapper {
  background-color: #fff;
  width: 100%;

  & .nested-main-header {
    background-color: #f8fafc;
    padding: 24px 16px 12px;
  }

  & .nested-main-title {
    color: #02060ceb;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
  }

  & .category-divider {
    background-color: #f1f1f6;
    width: 100%;
    height: 16px;
  }
}

.cart-wrapper {
  max-width: 1000px;
  min-height: 60vh;
  margin: 40px auto;
  padding: 0 16px;

  @media (width <= 768px) {
    margin: 20px auto;
    padding: 0 12px;
  }

  & .empty-cart-container {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    animation: .4s ease-out fadeIn;
    display: flex;

    & .animated-cart-icon {
      margin-bottom: 24px;
      animation: 3s ease-in-out infinite floatUpDown;
    }

    & h2 {
      color: #02060ceb;
      margin-bottom: 12px;
      font-size: 1.5rem;
      font-weight: 800;
    }

    & p {
      color: #02060c99;
      max-width: 300px;
      font-size: .95rem;
      line-height: 1.5;
    }
  }

  & .cart-content-wrapper {
    align-items: flex-start;
    gap: 32px;
    display: flex;

    @media (width <= 768px) {
      flex-direction: column;
      gap: 20px;
    }
  }

  & .cart-items-displayer {
    background: #fff;
    border-radius: 16px;
    flex: 2;
    padding: 24px;
    box-shadow: 0 4px 16px #0000000a;

    @media (width <= 768px) {
      width: 100%;
    }

    @media (width <= 576px) {
      padding: 16px 12px;
    }

    & .top-bar {
      border-bottom: 1px solid #02060c0d;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
      padding-bottom: 16px;
      display: flex;

      & h3 {
        color: #02060ceb;
        margin: 0;
        font-size: 1.25rem;
        font-weight: 800;

        @media (width <= 576px) {
          font-size: 1.1rem;
        }
      }

      & .clear-btn {
        color: #e43b4f;
        cursor: pointer;
        background: #02060c0d;
        border: none;
        border-radius: 8px;
        padding: 8px 16px;
        font-weight: 700;
        transition: background .2s;

        @media (width <= 576px) {
          padding: 6px 12px;
          font-size: .85rem;
        }

        &:hover {
          background: #e43b4f1a;
        }
      }
    }

    & .itemCards-container {
      flex-direction: column;
      gap: 16px;
      display: flex;
    }

    & .cart-item-wrapper {
      opacity: 0;
      animation: .4s forwards slideUpFade;
      transform: translateY(20px);
    }
  }

  & .cart-summary-container {
    flex: 1;
    position: sticky;
    top: 104px;

    @media (width <= 768px) {
      width: 100%;
    }
  }

  & .order-summary-card {
    background: #fff;
    border: 1px solid #02060c0d;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px #00000014;

    @media (width <= 576px) {
      padding: 16px;
    }

    & .summary-title {
      color: #02060ceb;
      margin: 0 0 20px;
      font-size: 1.15rem;
      font-weight: 800;
    }

    & .summary-row {
      color: #02060ca6;
      justify-content: space-between;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 14px;
      font-size: .9rem;
      font-weight: 500;
      display: flex;

      & span:first-child {
        flex: 1;
      }

      & span:last-child {
        white-space: nowrap;
        text-align: right;
      }

      &.discount-row {
        color: #0f8a65;
        font-weight: 600;
      }

      &.total-pay-row {
        color: #02060ceb;
        align-items: center;
        margin-top: 20px;
        margin-bottom: 0;
        font-size: 1.15rem;
        font-weight: 800;
      }
    }

    & .summary-divider {
      background-color: #02060c1a;
      height: 1px;
      margin: 16px 0;

      &.thick {
        background-color: #02060ceb;
        height: 2px;
      }
    }
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

.about-wrapper {
  align-items: center;
  max-width: 1000px;
  min-height: 70vh;
  margin: 80px auto;
  padding: 0 24px;
  display: flex;

  & .about-card {
    align-items: center;
    gap: 60px;
    width: 100%;
    display: flex;

    @media (width <= 850px) {
      text-align: center;
      flex-direction: column-reverse;
      gap: 40px;
    }
  }

  & .about-content {
    flex: 1.2;

    & .hero-title {
      color: #02060ceb;
      letter-spacing: -1px;
      margin: 0 0 10px;
      font-size: 3.5rem;
      font-weight: 900;
    }

    & .hero-subtitle {
      color: #0f8a65;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin: 0 0 24px;
      font-size: 1.2rem;
      font-weight: 700;
    }

    & .bio-text {
      color: #02060cb3;
      margin-bottom: 32px;
      font-size: 1.1rem;
      font-weight: 400;
      line-height: 1.7;
    }

    & .skills-grid {
      grid-template-columns: 1fr;
      gap: 16px;
      margin-bottom: 40px;
      display: grid;

      & .skill-item {
        align-items: center;
        gap: 12px;
        display: flex;

        @media (width <= 850px) {
          justify-content: center;
        }

        & .skill-dot {
          background-color: #02060ceb;
          border-radius: 50%;
          width: 8px;
          height: 8px;
        }

        & p {
          color: #02060ccc;
          margin: 0;
          font-size: 1rem;

          & strong {
            color: #02060ceb;
          }
        }
      }
    }

    & .pro-btn {
      color: #fff;
      background-color: #02060ceb;
      border-radius: 8px;
      padding: 16px 32px;
      font-size: 1rem;
      font-weight: 700;
      text-decoration: none;
      transition: all .3s cubic-bezier(.4, 0, .2, 1);
      display: inline-block;

      &:hover {
        background-color: #000;
        transform: translateY(-4px);
        box-shadow: 0 12px 24px #02060c26;
      }
    }
  }

  & .about-image-container {
    flex: .8;
    justify-content: center;
    display: flex;

    & .image-backdrop {
      position: relative;

      &:before {
        content: "";
        z-index: -1;
        background-color: #f1f1f6;
        border-radius: 24px;
        width: 100%;
        height: 100%;
        transition: all .3s;
        position: absolute;
        top: 20px;
        left: -20px;
      }

      & .profile-img {
        object-fit: cover;
        border-radius: 24px;
        width: 320px;
        height: 320px;
        transition: all .3s;
        box-shadow: 0 20px 40px #00000014;

        @media (width <= 850px) {
          width: 250px;
          height: 250px;
        }
      }

      &:hover .profile-img {
        transform: translateY(-10px);
      }

      &:hover:before {
        background-color: #e2e2e7;
        top: 30px;
        left: -10px;
      }
    }
  }
}

.contact-wrapper {
  background-color: #f8fafc;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 60px 16px;
  font-family: inherit;
  display: flex;
}

.contact-container {
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1100px;
  display: grid;

  @media (width <= 900px) {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info-section {
  padding-right: 24px;
  animation: .5s forwards slideInLeft;

  @media (width <= 900px) {
    text-align: center;
    padding-right: 0;
    animation: .5s forwards fadeIn;
  }

  & .contact-title {
    color: #02060ceb;
    letter-spacing: -1.5px;
    margin: 0 0 16px;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;

    @media (width <= 576px) {
      font-size: 2.5rem;
    }
  }

  & .contact-sub {
    color: #02060ca6;
    margin-bottom: 48px;
    font-size: 1.15rem;
    line-height: 1.6;

    @media (width <= 576px) {
      margin-bottom: 32px;
      font-size: 1rem;
    }
  }

  & .info-cards {
    flex-direction: column;
    gap: 32px;
    display: flex;

    @media (width <= 900px) {
      width: fit-content;
      margin: 0 auto;
    }
  }

  & .info-card {
    align-items: center;
    gap: 20px;
    display: flex;

    @media (width <= 900px) {
      text-align: left;
    }

    & .icon-wrapper {
      color: #ea580c;
      background-color: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      justify-content: center;
      align-items: center;
      width: 56px;
      height: 56px;
      font-size: 1.5rem;
      transition: transform .3s, box-shadow .3s;
      display: flex;
      box-shadow: 0 4px 12px #0000000d;

      &:hover {
        border-color: #ea580c;
        transform: translateY(-2px);
        box-shadow: 0 8px 16px #ea580c26;
      }
    }

    & .info-details {
      & h3 {
        color: #02060ceb;
        margin: 0 0 6px;
        font-size: 1.05rem;
        font-weight: 700;
      }

      & p {
        color: #02060ca6;
        margin: 0;
        font-size: .95rem;
      }
    }
  }
}

.contact-form-section {
  animation: .5s forwards slideInRight;

  @media (width <= 900px) {
    animation: .5s forwards fadeIn;
  }
}

.form-card {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 25px #0000000d;

  @media (width <= 576px) {
    padding: 24px;
  }

  & h2 {
    color: #02060ceb;
    letter-spacing: -.5px;
    margin: 0 0 32px;
    font-size: 1.8rem;
    font-weight: 800;
  }
}

.pro-form {
  flex-direction: column;
  gap: 28px;
  display: flex;

  & .input-row {
    gap: 24px;
    display: flex;

    @media (width <= 576px) {
      flex-direction: column;
      gap: 28px;
    }
  }

  & .input-group {
    flex-direction: column;
    flex: 1;
    gap: 8px;
    display: flex;

    & label {
      color: #02060cd9;
      font-size: .95rem;
      font-weight: 600;
    }

    & input, & textarea {
      color: #02060ceb;
      box-sizing: border-box;
      background-color: #fff;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      width: 100%;
      padding: 14px 16px;
      font-family: inherit;
      font-size: 1rem;
      font-weight: 400;
      transition: all .2s;

      &::placeholder {
        color: #9ca3af;
      }

      &:focus {
        background-color: #fff;
        border-color: #ea580c;
        outline: none;
        box-shadow: 0 0 0 3px #ea580c26;
      }
    }

    & textarea {
      resize: vertical;
      min-height: 140px;
    }
  }

  & .pro-submit {
    color: #fff;
    cursor: pointer;
    background-color: #ea580c;
    border: none;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all .2s;
    display: flex;

    & .btn-icon {
      font-size: 1.2rem;
      transition: transform .3s;
    }

    &:hover {
      background-color: #d04604;
      transform: translateY(-2px);

      & .btn-icon {
        transform: translateX(4px) translateY(-4px);
      }
    }

    &:active {
      transform: translateY(1px);
    }
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*# sourceMappingURL=crave-dash.ebeadb08.css.map */
