*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --font-family: "Poppins", sans-serif;
  --second-family: "Protest Riot", sans-serif;
  --third-family: "Caveat", sans-serif;
  --font3: "Inter", sans-serif;
  --primary-color: #ec1a23;
}

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes riseUp {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Animation Classes */
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out both;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.iconify-icon {
  display: inline-flex;
  align-items: center;
  line-height: 10%;
  vertical-align: middle;
}
/* TopBar Start Here */
#top_bar {
  height: 50px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
}
#top_bar p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}
#top_bar .social_links li {
  margin: 0 8px;
}
#top_bar .social_links li a {
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
}
/* TopBar Ends Here */

/* NavBar Start Here */
nav {
  padding: 30px 0;
}
nav .quick_links li {
  margin: 0 9px;
}
nav .quick_links li a {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: #000;
  border: 1px solid var(--primary-color);
  padding: 5px;
  border-radius: 5px;
}
nav .quick_links li a.active,
nav .quick_links li a:hover {
  color: var(--primary-color);
}
#offcanvasWithBothOptions .custom_btn a,
.custom_btn .sign-up {
  border-radius: 10px;
  background: var(--primary-color);
  padding: 8px 20px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  border: 1px solid var(--primary-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}

#offcanvasWithBothOptions .custom_btn a:hover,
.custom_btn .sign-up:hover {
  background-color: #fff;
  color: var(--primary-color);
  cursor: pointer;
}

.custom_btn a iconify-icon {
  font-size: 18px;
  margin-bottom: 3px;
  vertical-align: middle;
}
.custom_btn .sign-in{
  background: #fff;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  font-family: var(--font-family);
  padding: 8px 20px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
}
.custom_btn .sign-in:hover{
  background: var(--primary-color);
  color: #fff;
}
.mobile-nav .btn {
  font-size: 20px;
}
.mobile_logo img {
  width: 60px;
}
.mobile-nav .search_icon a {
  color: #000;
  font-size: 20px;
}
.offcanvas {
  max-width: 80%;
}
.mobile-nav .btn:focus {
  box-shadow: none;
}
header .offcanvas-body ul li a {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: #000;
}
header .offcanvas-body ul li a.active,
header .offcanvas-body ul li a:hover {
  color: var(--primary-color);
}
header .offcanvas-body ul li {
  margin: 10px 0;
}

.restaurant-contact h6 {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.branch {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

.branch strong {
  color: #333;
  display: block;
  margin-bottom: 5px;
}

.branch iconify-icon {
  color: var(--primary-color);
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
/* NavBar Ends Here */

/* Banner Start Here */
.banner_slider img {
  width: 100%;
  height: 80vh;
}
.banner_slider {
  position: relative;
}
.banner_slider .slick-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.banner_slider .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--primary-color);
  opacity: 0.4;
  transition: all 0.3s ease;
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.banner_slider .slick-dots li button:before {
  content: "" !important;
  display: none !important;
}

.banner_slider .slick-dots li.slick-active button {
  opacity: 1;
  transform: scale(1.3);
}

/* Banner End Here */

/* Slider Touch Support */
.slick-slider {
  touch-action: pan-x;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.slick-list {
  touch-action: pan-x;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.slick-track {
  touch-action: pan-x;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Mobile slider improvements */
@media (max-width: 768px) {
  .category_slider .slick-slide,
  .featured_slider .slick-slide {
    cursor: grab;
  }
  
  .category_slider .slick-slide:active,
  .featured_slider .slick-slide:active {
    cursor: grabbing;
  }
  
  .category_slider .slick-list,
  .featured_slider .slick-list {
    overflow: hidden;
    position: relative;
  }
}

/* Pagination Styles */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  position: relative;
}

/* Scroll indicator for mobile */
@media (max-width: 768px) {
  .pagination-wrapper::after {
    content: "← Swipe to see more →";
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #6c757d;
    opacity: 0.7;
    white-space: nowrap;
  }
}

.pagination-info {
  font-family: var(--font-family);
  font-size: 14px;
}

.pagination-info p {
  margin: 0;
  color: #6c757d;
}

.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}

.pagination li {
  display: inline-block;
}

.pagination li a,
.pagination li span {
  display: inline-block;
  padding: 10px 15px;
  text-decoration: none;
  border: 1px solid #ddd;
  color: #333;
  background: #fff;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-family: var(--font-family);
  font-weight: 500;
  min-width: 40px;
  text-align: center;
}

.pagination li a:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.pagination li a iconify-icon,
.pagination li span iconify-icon {
  font-size: 18px;
  vertical-align: middle;
}

.pagination li.active span {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.pagination li.disabled span {
  background: #f8f9fa;
  color: #6c757d;
  border-color: #dee2e6;
  cursor: not-allowed;
}

.pagination li:first-child a,
.pagination li:first-child span {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.pagination li:last-child a,
.pagination li:last-child span {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* Mobile pagination */
@media (max-width: 768px) {
  .pagination-wrapper {
    padding: 0 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .pagination {
    gap: 3px;
    min-width: max-content;
    justify-content: center;
    flex-wrap: nowrap;
  }
  
  .pagination li a,
  .pagination li span {
    padding: 6px 10px;
    font-size: 13px;
    min-width: 32px;
    text-align: center;
    white-space: nowrap;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .pagination-wrapper {
    padding: 0 10px;
  }
  
  .pagination {
    gap: 2px;
  }
  
  .pagination li a,
  .pagination li span {
    padding: 5px 8px;
    font-size: 12px;
    min-width: 28px;
  }
  
  .pagination li a iconify-icon,
  .pagination li span iconify-icon {
    font-size: 14px;
  }
}

/* Very small screens - hide some page numbers */
@media (max-width: 360px) {
  .pagination-wrapper {
    padding: 0 5px;
  }
  
  .pagination li a,
  .pagination li span {
    padding: 4px 6px;
    font-size: 11px;
    min-width: 24px;
  }
  
  .pagination {
    gap: 1px;
  }
  
  .pagination-wrapper::after {
    font-size: 10px;
    top: -20px;
  }
}

/* Ensure pagination doesn't overflow on any screen */
.pagination-wrapper {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pagination {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.heading-delivery-partner h3 span {
  color: var(--primary-color);
}

/* Delivery Partner Message Styles */
.no-delivery-partners {
  padding: 40px 20px;
  background: #f8f9fa;
  border-radius: 15px;
  border: 2px dashed #dee2e6;
}

.delivery-off-icon {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.no-delivery-partners h4 {
  color: #333;
  font-family: var(--font-family);
  font-weight: 600;
}

.no-delivery-partners h5 {
  color: #555;
  font-family: var(--font-family);
  font-weight: 500;
}

/* Simple platform names text */
.delivery-platforms-text {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin: 20px 0;
  text-align: center;
}

.platform-names {
  font-family: var(--font-family);
  font-size: 16px;
  color: #666;
  margin: 0;
  font-weight: 400;
}

/* How to order section */
.how-to-order {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-left: 4px solid var(--primary-color);
}

.instruction-title {
  color: var(--primary-color);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.instruction-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.step {
  display: flex;
  align-items: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.step:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.step-number {
  background: var(--primary-color);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  margin-right: 15px;
  flex-shrink: 0;
}

.step-text {
  font-family: var(--font-family);
  font-size: 14px;
  color: #333;
  font-weight: 500;
  line-height: 1.4;
}

.contact-info {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}

.contact-buttons .btn {
  font-family: var(--font-family);
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Mobile responsive for delivery message */
@media (max-width: 768px) {
  .no-delivery-partners {
    padding: 30px 15px;
  }
  
  .delivery-platforms-text {
    padding: 20px 15px;
  }
  
  .platform-names {
    font-size: 14px;
  }
  
  .how-to-order {
    padding: 20px 15px;
  }
  
  .instruction-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .step {
    padding: 12px;
  }
  
  .step-number {
    width: 25px;
    height: 25px;
    font-size: 12px;
    margin-right: 12px;
  }
  
  .step-text {
    font-size: 13px;
  }
  
  .instruction-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .contact-buttons .btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* Order Type Start Here */
#order_type {
  padding: 50px 0;
}
#order_type .heading h3 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 45px;
  color: #000;
  text-align: center;
}
#order_type .heading h3 span {
  color: var(--primary-color);
}
#order_type .order_type_button a {
  background: var(--primary-color);
  padding: 13px 71px;
  border-radius: 6px;
  color: #fff;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 22px;
  color: #fff;
}
#order_type .order_type_button a:hover {
  background: #fff;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  transition: all 0.3s ease;
}

.delivery-off-btn {
  background: #6c757d !important;
  color: #fff !important;
  border: 1px solid #6c757d !important;
  opacity: 0.8;
  position: relative;
}

.delivery-off-btn:hover {
  background: #5a6268 !important;
  color: #fff !important;
  border-color: #5a6268 !important;
  opacity: 1;
}

.delivery-off-btn small {
  font-size: 12px;
  opacity: 0.8;
}
/* Order Type End Here */

/* fetured Menu Start Here */
#featured_menu {
  padding: 50px 0;
}
.heading h3 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 45px;
  color: #000;
  margin-left: 10px;
}
.heading h3 span {
  color: var(--primary-color);
}
.heading {
  position: relative;
}
#featured_menu .heading img {
  position: absolute;
  left: -9px;
  top: -10px;
}
#featured_menu .featured_items {
  border-radius: 15px;
  position: relative;
}
#featured_menu .featured_items .label {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-color);
  padding: 5px 10px;
  border-radius: 5px;
}
#featured_menu .featured_items .label p {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
#featured_menu .featured_items img {
  border-radius: 15px;
}
#featured_menu .featured_items .content {
  padding: 20px;
}

/* fetured Menu End Here */

/* Category Start Here */
.category_slider {
  padding: 30px 0;
}
#categorise_menu .heading img{
  position: absolute;
  left: 470px !important;
  top: -15px;
}
#categorise_menu .card {
  max-height: 155px;
  border: none;
  background: #fff;
  padding: 30px 10px;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
  margin-top: 20px;
}
#categorise_menu .card h5 {
  margin-top: 15px;
  font-weight: 600;
  color: #000;
  font-family: var(--font-family);
}
#categorise_menu .card .iconify-icon {
  font-size: 60px;
  color: var(--primary-color);
}
#categorise_menu .card .item_count {
  position: absolute;
  background: var(--primary-color);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  top: 15px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#categorise_menu .card .item_count p {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
.slick-prev,
.slick-next {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  width: 40px;
  height: 40px;
  z-index: 10;
}
.slick-prev::before,
.slick-next::before {
  font-size: 20px;
  color: #333;
}

/* Category End Here */
.category_slider .slick-slide {
  margin: 0 12px;
}

.category_slider .slick-list {
  margin: 0 -12px;
  touch-action: pan-x;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.category_slider .slick-track {
  touch-action: pan-x;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.featured_slider .slick-slide {
  margin: 0 10px;
}

.featured_slider .slick-list {
  margin: 0 -10px;
  touch-action: pan-x;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.featured_slider .slick-track {
  touch-action: pan-x;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Set Menu Start Here */
#set_menu {
  padding-top: 20px;
}
#set_menu .heading img {
  position: absolute;
  left: -9px;
  top: -12px;
}
#set_menu .category_menu {
  margin: 10px 0;
}
.view_all_btn a {
  background: var(--primary-color);
  padding: 12px 20px;
  color: #fff;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.3s ease;
  display: inline-block;
  align-items: center;
  border: 1px solid var(--primary-color);
}
.view_all_btn a:hover {
  background: #fff;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  cursor: pointer;
}
.view_all_btn a .iconify-icon {
  margin-left: 5px;
  margin-bottom: 3px;
  font-size: 20px;
}
/* Set Menu End Here */

/* Happy Customer Start Here */
#happy_customer {
  padding: 50px 0;
}
#happy_customer .heading h3 {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 50px;
  color: #1a1a1a;
}
#happy_customer .heading h3 span {
  color: var(--primary-color);
}
#happy_customer .heading p {
  font-family: var(--font3);
  font-weight: 400;
  font-size: 16px;
  color: #383838;
  margin-top: 10px;
}
#happy_customer .content {
  width: 100%;
}
.grid {
  column-count: 4;
  column-gap: 15px;
}

.grid .item {
  break-inside: avoid;
  margin-bottom: 15px;
}

.grid img {
  width: 100%;
  border-radius: 6px;
  display: block;
}
.custom_memory_btn a {
  border-radius: 5px;
  background: var(--primary-color);
  padding: 13px 25px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}
.custom_memory_btn a:hover {
  background: #fff;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  transition: all 0.3s ease;
}

/* Happy Customer End Here */

/* footer Start Here */
#footer {
  background: #1a1a1a;
  height: auto;
}
#footer .content {
  padding: 56px 0 50px 0;
}
#footer .left-row p {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  margin-top: 22px;
}
#footer .left-row .social-links a {
  color: #fff;
  font-size: 30px;
  gap: 0;
  margin: 0 10px;
}
#footer .middle-row h4 {
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 24px;
  color: #fff;
}
#footer .middle-row ul li a {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}
#footer .middle-row ul li {
  margin: 5px 0;
}
#footer hr {
  color: #fff;
  margin: 20px 0 20px 0;
}
#footer .right-row iframe {
  width: 400px;
  height: 200px;
}
#footer .copyright p {
  font-family: var(--primary-font);
  font-weight: 300;
  font-size: 16px;
  color: #fff;
}
/* footer End Here */

/* Custom Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  z-index: 10;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
}

.slick-prev {
  left: 20px;
}

.slick-next {
  right: 20px;
}

.slick-prev:before,
.slick-next:before {
  content: "";
}



/* !Login Page Csss */
#login{
  padding: 80px 0;
  background: #f0f0f0;
}

#login .card-content{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  /* width: 480px;
  height: 440px; */
  margin-left: 60px;
  background: #fff;
}
#login .card-content .heading img{
  padding-bottom: 20px;
  padding-top: 40px;
}
#login .card-content .heading h3{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 30px;
  color: #000;
  margin-left: 10px;
  text-align: center;
}
#login .card-content .heading p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #383838;
  text-align: center;
  margin-top: 5px;
}
#login .card-content .contents .form-group label{
  display: block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  margin-top: 15px;
  margin-left: 11%;
}
#login .card-content .contents .form-group input{
  width: 450px;
  padding: 10px ;
  border: 1px solid #000;
  background: transparent;
  border-radius: 5px;
}

#login .card-content .contents .login_btn{
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 10px 100px;
  background: var(--primary-color);
  color: #fff;
  font-family: var(--font-family);
  border: none;
  outline: none;
  border-radius: 5px;
}
#login .card-content .contents .login_btn:hover{
  background: #fff;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}
#login .card-content .contents .action_btns{
  padding: 15px 0;
}
#login .card-content .contents .action_btns a{
  padding: 8px 50px;
  margin: 0 auto;
  border: 1px solid #000;
  font-family: var(--font-family);
  color: var(--primary-color);
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
#login .card-content .contents .action_btns a:hover {
  background-color: #fff;
  color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
}
#login .action_btns .coloring {
  color: var(--primary-color);
  font-size: 20px;
  margin-right: 5px;
}
#login .action_btns span{
  color: var(--primary-color);
  font-size: 12px;
}


/* !Menu Start Here */
#menu .header h3 {
  padding: 10px 0;
  font-family: var(--second-family);
  font-size: 35px;
}
#menu .header h3 span {
  color: var(--primary-color);
}

.menu-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#menu .header .menu-category {
  display: flex;
  gap: 10px;
  padding: 20px 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none; 
  scrollbar-width: none;     
}
#menu .header .menu-category::-webkit-scrollbar {
  display: none; 
}

#menu .header .menu-category li {
  flex: 0 0 auto;
}

#menu .header .menu-category li a {
  font-family: var(--font-family);
  color: #000;
  padding: 10px 20px;
  border: 1px solid #000;
  border-radius: 20px;
  transition: 0.3s ease;
  white-space: nowrap;
}
#menu .header .menu-category li a.active {
  color: #fff;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}
#menu .header .menu-category li a:hover {
  background: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
}

.scroll-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  font-size: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.scroll-btn.left {
  left: 0px;
}
.scroll-btn.right {
  right:0px;
}
#menu .content .dish-card {
  padding: 25px;
  border-radius: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin: 20px 10px 20px 0;
  cursor: pointer;
}

#menu .content .dish-card .dish-details h4{
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
}
#menu .content .dish-card .dish-details span{
  font-family: var(--font-family);
  font-size: 15px;
  margin: 15px 0;
}
#menu .content .dish-card .dish-details span del{
  color: #585656;
}
#menu .content .dish-card .dish-details p{
  font-family: var(--font-family);
}
#menu .content .dish-card .dish-image{
  position: relative;
}
#menu .content .dish-card .dish-image img{
  border-radius: 5px;
}
#menu .content .dish-card .dish-image a{
  position: absolute;
  right: 15px;
  bottom: 10px;
}
#menu .content .dish-card .dish-image button{
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Modal Wrapper */
.food-modal {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

/* Close Button */
.food-modal .close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  background: #fff;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 30px;
}

/* Food Image */
.food-img {
  max-height: 280px;
  object-fit: cover;
}
.food-modal .details h5,
.food-modal .details h6
{
  font-family: var(--font-family);
  font-weight: 600;
}
.food-modal .details p{
  font-family: var(--font-family);
}

/* Price */
.price del {
  font-family: var(--font-family);
  margin: 0 6px;
  color: #333;
}

/* Sticky Footer */
.sticky-footer {
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 12px 20px;
  border-top: 1px solid #eee;
}

/* Quantity */
.quantity-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 25px;
  overflow: hidden;
}
.qty-btn {
  background: #f5f5f5;
  border: none;
  padding: 8px 15px;
  font-size: 18px;
  cursor: pointer;
}
#qtyInput {
  width: 50px;
  text-align: center;
  border: none;
  outline: none;
  font-weight: bold;
}

/* Add to Cart Button */
.add-cart-btn {
  background: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 30px;
  padding: 10px 40px;
  font-size: 16px;
  transition: 0.3s ease;
}
.add-cart-btn:hover {
  background: #fff;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

/* contact page css start */
#contact_us_page{
  font-family: var(--font-family);
}
#contact_us_page select:focus,
#contact_us_page textarea:focus,
#contact_us_page input:focus{
  box-shadow: none;
  border: 1px solid var(--primary-color);
}
.contact-info-page {
  text-align: center;
  border: 1px solid #ddd;
  padding: 20px;
  height: 150px;
  margin-bottom: 20px;
  font-family: var(--font-family);
}
#contact_us_page .contact-form h5{
  font-family: var(--second-family);
  font-size: 40px;
}
#contact_us_page .contact-form h5 span{
  color: var(--primary-color);
}
#contact_us_page .contact-form p{
  font-family: var(--font-family);
  margin-bottom: 20px;
}
#map {
  width: 100%;
  height: 500px;
  margin-bottom: 20px;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.btn-send {
  display: block;
  margin: 0 auto;
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 250px;
  border: none;
  margin-top: 10px;
  width: 100%;
  transition: 0.3s ease;
}
.btn-send:hover {
  color: var(--primary-color);
  background: #fff;
  border: 1px solid var(--primary-color);
}

.contact-info-page{
  position: relative;
  margin-top: 30px;
  cursor: pointer;
}
.contact-info-page h5{
  margin-top: 8px;
}
.contact-info-page p{
  margin-top: 8px;
}
.contact_icon {
  position: absolute;
  display: block;
  margin-bottom: 10px;
  font-size: 50px;
  left: 50%;
  transform: translateX(-50%);
  top: -25px;
  transition: 0.3s ease;
}
.contact-info-page:hover .contact_icon{
  scale: 1.1;
}

#contact-slider{
  position: relative;
}
#contact-slider .arrows{
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;           
  display: flex;
  justify-content: space-between; 
  transform: translateY(-50%);
}

#contact-slider .arrows a{
padding: 10px;               
  border: 1px solid #383838;  
  border-radius: 50%;          
  display: inline-flex;         
  align-items: center;
  justify-content: center;
  background: #fff;            
  text-decoration: none;        
  color: #383838;      
  transition: 0.4s;
}
#contact-slider .arrows a:hover{
  border: none;
  background-color: var(--primary-color);
  color: #ddd;
}
#contact-slider .arrows .left_arrow{
  margin-left: -20px;

}
#contact-slider .arrows .right_arrow{
margin-right: -20px;

}





/* Delivery Partner Page */
#delivery_partner .heading-delivery-partner h3{
  font-family: var(--second-family);
  font-size: 40px;
}
#delivery_partner .heading-delivery-partner h3 span{
  color: var(--primary-color);
}
#delivery_partner .heading-delivery-partner p{
  font-family: var(--font-family);
  margin-top: 5px;
}
#delivery_partner .content .delivery-card{
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin: 0 15px;
  padding: 15px 0;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
}
#delivery_partner .content .delivery-card img{
  width: 80px;
}
#delivery_partner .content .delivery-card h5{
  font-family: var(--font-family);
  margin: 10px 0;
}
#delivery_partner .content .delivery-card:hover{
  scale: 1.1;
}

/* Checkout Page Design */
#checkout
{
  background: #f4f5f5;
}
#checkout h3{
  font-family: var(--font-family);
  font-weight: 800;
  margin-bottom: 25px;
  font-size: 35px;
  padding-top: 30px;
}
#checkout .checkout-cart{
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;  padding: 25px;
  margin-bottom: 30px;
  border-radius: 8px;
  background: #fff;
}
#checkout .checkout-cart h4{
  font-family: var(--font-family);
  font-weight: 700;
  padding-bottom: 20px;
}
#checkout .user-details label{
  display: block;
  font-family: var(--font-family);
}
#checkout .user-details .checkout-input{
  padding: 10px 250px 10px 15px;
  margin-bottom: 10px;
  margin-top: 5px;
  border-radius: 13px;
  outline: none;
  border: 1px solid #ddd;
  font-family: var(--font-family);
}
#checkout .user-details .checkout-input:focus{
  outline: none;
}
#checkout .user-details textarea{
  padding: 10px 300px 10px 15px;
  margin-top: 5px;
  margin-bottom: 10px;
  border-radius: 13px;
  outline: none;
  border: 1px solid #ddd;
}
#checkout .checkout-cart .payment-method-card .payment-card{
  border: 1px solid #000;
  padding: 15px;
  cursor: pointer;
  border-radius: 8px;
  font-family: var(--font-family);
}
#checkout .checkout-cart .payment-method-card .payment-card img{
  width: 50px;
  margin-left: 20px;
  margin-right: 10px
}
#checkout .checkout-cart .payment-method-card .payment-card p{
  font-weight: 600;
}
#checkout .checkout-cart .payment-method-card .payment-card span{
  display: block;
  padding-top: 10px;
  font-size: 14px;
}
#checkout .checkout-cart .voucher p{
  font-size: 18px;
  font-family: var(--font-family);
  font-weight: 600;
  cursor: pointer;
  padding: 10px;
  margin-top: 20px;
}
#checkout .checkout-cart .voucher p iconify-icon{
  font-size: 30px;
  margin-right: 15px;
}
#checkout .checkout-cart .voucher{
  text-align: center;
  width: 250px;
  transition: 0.3s ease;
}
#checkout .checkout-cart .voucher:hover{
  background: #ddd;
  border-radius: 15px;
}
#checkout .order-place-btn{
  padding: 10px 0;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  outline: none;
  color: #fff;
  font-family: var(--font-family);
  margin-bottom: 20px;
  border-radius: 8px;
  transition: 0.3s ease;
}
#checkout .order-place-btn:hover{
  border: 1px solid var(--primary-color);
  background: #fff;
  color: var(--primary-color);
}
#checkout .right-cart-checkout{
  font-family: var(--font-family);
}
#checkout .right-cart-checkout .food p{
  color: #747373;
}
#checkout .right-cart-checkout p{
  color: #747373;
  margin: 5px 0;
  
}
#checkout .right-cart-checkout .total p{
  color: #000;
  font-weight: 800;
  font-size: 25px;
  margin-top: 10px;
}
#checkout .right-cart-checkout .checkout-total span{
  color: #747373;
  font-size: 12px;
}
/* cart design start here */
.cart {
  border-radius: 11px 0 0 11px;
  width: 65px;
  height: 65px;
  background: var(--primary-color);
  color: #fff;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  border: 1px solid #fff;
  z-index: 1050;
}
.cart button{
  color: #fff;
}
.cart .iconify-icon {
  font-size: 40px;
}
.cart .notification {
  position: absolute;
  background: #ffc107;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  left: -5px;
  top: -5px;
}
.qty-input{
  border: none;
  outline: none;
  width: 25px;
  text-align: center;
}

/* cart design end here */
#cartSidebar {
  width: 400px;
}
#cartSidebar .cart-header {
  background: var(--primary-color);
  color: #fff;
  padding: 15px;
  text-align: center;
}
.delivery-type-card{
  border: 1px solid #e5e7eb;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  display: flex;
  border-radius: 10px;
  transition: all .2s ease-in-out;
}
.delivery-type-card.active{
  border: 1px solid var(--primary-color);
  box-shadow: 0 6px 14px rgba(236,26,35,0.12);
}
.delivery-type-card.active label{
  color: var(--primary-color);
}
.delivery-type-card label{
  font-family: var(--font-family);
  font-size: 18px;
  margin-left: 5px;
}
/* hide native radio and use custom circle */
.delivery-type-card .delivery-radio{
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}
.delivery-type-card .delivery-radio:checked{
  border-color: var(--primary-color);
}
.delivery-type-card .delivery-radio:checked::after{
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
input[type='radio']:after {
  width: 15px;
  height: 15px;
  top: -3px;
  left: 0px;
  border-radius: 15px;
  position: relative;
  background-color: #d1d3d1;
  content: '';
  display: inline-block;
  visibility: visible;
  border: 2px solid white;
}

input[type='radio']:checked:after {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  top: -3px;
  left: 0px;
  position: relative;
  background-color: var(--primary-color);
  content: '';
  display: inline-block;
  visibility: visible;
  border: 2px solid white;
}

/* Custom style for selected variation radio button to be fully red */
input[type="radio"].form-check-input:checked {
  background-color: #ff0000 !important; 
  border-color: #ff0000 !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.5) !important;
}
.checkout-cart strong{
  font-family: var(--font-family);
}

/* variations css */
.variations {
  margin-top: 20px;
}

.variations h6 {
  font-weight: 600;
  margin-bottom: 10px;
}

.variations .form-check {
  margin-bottom: 10px;
}
.variations .form-check-label {
  font-family: var(--font-family);
  margin-left: 8px;
}

/* profile */
.profile-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.profile-card .banner {
  position: relative;
}

.profile-card .banner img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.profile-card .profile-pic {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  background: #eee;
}

.profile-card h4 {
  margin-top: 50px;
  font-weight: 600;
}

.profile-card p {
  margin: 0;
  font-size: 14px;
}

.stats {
  border-top: 1px solid #eee;
  margin-top: 15px;
  padding-top: 15px;
}

.stats span {
  display: block;
  font-weight: 600;
  color: #333;
}

.profile-settings {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
}

.nav-tabs .nav-link.active {
  border: none;
  border-bottom: 2px solid var(--primary-color);
  font-weight: 600;
  color: var(--primary-color);
}

.btn-orange {
  background: var(--primary-color);
  border: none;
  color: #fff;
}

.btn-orange:hover {
  background: var(--primary-color);
  color: #fff;
}

.become-member {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}

.become-member button {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
}
.nav-tabs .nav-link{
  font-family: var(--font-family);
  color: #000;
}
#account{
  font-family: var(--font-family);
}

/* order page */
.order-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.order-card img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}
.order-info h5 {
  font-weight: 600;
  margin-bottom: 5px;
}
.order-info p {
  margin: 0;
  font-size: 14px;
  color: #555;
}
.order-total {
  font-weight: 700;
}
.reorder-btn {
  background-color: #e91e63;
  color: #fff;
  border: none;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 4px;
}
.reorder-btn:hover {
  background-color: #d81b60;
}
.section-title {
  font-weight: 600;
  margin-bottom: 15px;
}
#orders{
  font-family: var(--font-family);
}

/* Success Page */
#order-success{
  padding: 60px 0;
  font-family: var(--font-family);
  background: #f2f2f2;
}
.success-cart{
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  padding: 20px 20px 30px 20px;
  background: #fff;
  border-radius: 5px;
  animation: riseUp 1s ease-out forwards;
}
#order-success .content h5{
  font-weight: 400;
  font-size: 20px;
}
#order-success .content h3{
  font-weight: 800;
  margin: 10px 0;
  font-size: 30px;
}
.check-order-btn-success{
  padding: 10px 20px;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
  border-radius: 5px;
  transition: 0.3s ease;
}
.check-order-btn-success:hover{
  border: 1px solid var(--primary-color);
  background: #fff;
  color: var(--primary-color);
}

/* DINE IN PAGE */
#reservation-cover {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.55)), to(rgba(0, 0, 0, 0.55))), url('../images/reservation-cover.jpg') 33% 40%;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));
  background-size: cover;
  background-position: center;
}

.page-cover {
  color: white;
  text-align: center;
  padding-top: 150px;
  padding-bottom: 150px;
}
.page-cover h1 {
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: var(--font-family);
}

#dine-in {
  background: #f9f9f9;
  font-family: var(--font-family);
}

#dine-in .card {
  border-radius: 20px;
}

#dine-in h2 {
  font-family: var(--font-family);
  font-weight: 700;
}

#dine-in .form-control {
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 16px;
}
#dine-in .form-control:focus {
  box-shadow: none;
  border: 1px solid var(--primary-color);
}

.dine-in-btn {
  padding: 10px 20px;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  outline: none;
  border-radius: 5px;
  color: #fff;
  font-family: var(--font-family);
  transition: 0.3s ease;
}
.dine-in-btn:hover{
  background: #fff;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

/* Memory Modal */
#memoryModal{
  font-family: var(--font-family);
}

#memoryModal .star-rating {
  direction: ltr;
  unicode-bidi: bidi-override;
}

#memoryModal textarea:focus,
#memoryModal input:focus{
  box-shadow: none;
  border: 1px solid var(--primary-color);
}

#memoryModal .custom-btn {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
  padding: 5px 0;
  border-radius: 5px;
  outline: none;
  transition: 0.3s ease;
}

#memoryModal .custom-btn:hover{
  background: #fff;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

/* hover styles for register page buttons */ 
.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #fff;
  color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-outline-secondary:hover {
  background-color: #f8f9fa;
  color: #6c757d;
  border-color: #6c757d;
  box-shadow: 0 0 10px #6c757d;
}

/* blog.css */

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Blog Banner */
#blog_banner {
  background: linear-gradient(rgba(236, 26, 35, 0.7), rgba(255, 107, 107, 0.5));
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 200px 0;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#blog_banner.blog-detail-banner {
  background: linear-gradient(rgba(236, 26, 35, 0.7), rgba(255, 107, 107, 0.5)), url('../img/banner-1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  min-height: 400px;
  animation: fadeInUp 1s ease-out;
  position: relative;
  overflow: hidden;
}

#blog_banner.blog-detail-banner .banner_content h1 {
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7), 0 0 10px rgba(255, 255, 255, 0.3);
  font-size: 2.8rem;
  letter-spacing: 0.5px;
  word-break: break-word;
  max-width: 90%;
  margin: 80px auto;
  line-height: 1.1;
}

#blog_banner.blog-detail-banner .banner_content h1 span {
  color: #fff;
  text-shadow: inherit;
}

#blog_banner.blog-detail-banner .banner_content p {
  font-size: 1.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  max-width: 80%;
  margin: 0 auto 20px;
  word-break: break-word;
  line-height: 1.4;
}

.animated-word {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.animated-subtitle {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.banner-slider {
  position: relative;
  z-index: 2;
}

.banner_content {
  opacity: 0;
  transition: all 0.8s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  box-sizing: border-box;
}

.banner_content.active {
  opacity: 1;
  transform: translate(-50%, -50%);
}

#blog_banner.blog-detail-banner .banner_content {
  z-index: 3;
  max-height: 100%;
  overflow: visible;
}

#blog_banner .banner_content h1 {
  font-family: var(--second-family);
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#blog_banner .banner_content h1 span {
  color: #fff;
}

#blog_banner .banner_content p {
  font-family: var(--font-family);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.blog-section {
  padding: 60px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: bold;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.section-title span {
  color: #e41e26; /* theme red */
}

/* Blog list */
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 20px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out both;
  display: flex;
  flex-direction: column;
}

.blog-card:nth-child(1) { animation-delay: 0.6s; }
.blog-card:nth-child(2) { animation-delay: 0.7s; }
.blog-card:nth-child(3) { animation-delay: 0.8s; }
.blog-card:nth-child(4) { animation-delay: 0.9s; }
.blog-card:nth-child(5) { animation-delay: 1.0s; }
.blog-card:nth-child(6) { animation-delay: 1.1s; }
.blog-card:nth-child(7) { animation-delay: 1.2s; }
.blog-card:nth-child(8) { animation-delay: 1.3s; }

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.blog-card .blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card .blog-content {
  padding: 20px;
}

.blog-card .blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #666;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.5s ease-out 0.1s forwards;
}

.blog-card .blog-date {
  color: #e41e26;
  font-weight: 500;
}

.blog-card h3 {
  font-family: var(--font-family);
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 0;
}
.blog-card h3 a{
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
.blog-card h3:hover {
  color: #e41e26;
}

.blog-card .excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.5s ease-out 0.3s forwards;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.blog-card .read-more {
  display: inline-block;
  background: #e41e26;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-family: var(--font-family);
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.5s ease-out 0.4s forwards;
  align-self: flex-start;
  margin-top: auto;
}

.blog-card .read-more:hover {
  background: #c00;
  transform: translateY(-2px);
}

/* Admin Actions - Hidden by default */
.blog-card .actions {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.blog-card .actions button {
  background: #e41e26;
  color: #fff;
  border: none;
  padding: 6px 12px;
  margin-right: 6px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
}

.blog-card .actions button:hover {
  background: #c00;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #blog_banner .banner_content h1 {
    font-size: 2.2rem;
  }

  .blog-card .blog-content {
    padding: 15px;
  }
}
/* Hero Section */
.blog-hero {
  background-position: center/cover;
  background-repeat: no-repeat;
  min-height: 300px;
  position: relative;
}

.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.blog-hero .container {
  position: relative;
  z-index: 2;
}

.blog-hero h1 {
  font-family: var(--second-family);
  font-size: 45px;
  color: #fff;
}

.blog-hero p {
  font-family: var(--font-family);
  font-size: 12px;
  color: #fff;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  border-radius: 0;
  margin: 0;
  padding: 15px 0;
}

.breadcrumb-item {
  font-family: var(--font-family);
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: black;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--primary-color);
  content: ">";
  margin: 0 8px;
}

.breadcrumb-item.active {
  color: rgb(20, 6, 6);
  font-weight: 500;
}

/* Blog Content */
.blog-detail p {
  line-height: 1.8;
  font-family: var(--font-family);
}

.blog-detail ul {
  padding-left: 20px;
}

.blog-detail ul li {
  margin-bottom: 10px;
  font-family: var(--font-family);
}

.blog-detail h2 {
  font-family: var(--second-family);
  color: #000;
}

/* Author Box */
.author-box {
  background: #fff;
  border-left: 5px solid var(--primary-color);
}

.author-box h5 {
  font-family: var(--font-family);
  color: #000;
}

.author-box p {
  font-family: var(--font-family);
}

/* Comments */
.comments .comment {
  background: #f9f9f9;
}

.comments h4 {
  font-family: var(--second-family);
  color: #000;
}

.comments .comment strong {
  font-family: var(--font-family);
  color: var(--primary-color);
}

.comments h5 {
  font-family: var(--font-family);
  color: #000;
}

/* Sidebar Cards */
.related-slider .card {
  transition: transform 0.3s;
  margin: 0 10px;
  width: 200px;
  height: 300px;
}
.related-slider .card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}



.related-slider .card:hover {
  transform: translateY(-5px);
}

.related-slider .card h6 {
  font-family: var(--font-family);
  color: #000;
}

.related-slider .card a {
  text-decoration: none;
  color: inherit;
}

/* Social Share */
.p-3.bg-light.rounded.shadow-sm h6 {
  font-family: var(--font-family);
  color: #000;
}

/* Button */
.btn-primary {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  font-family: var(--font-family);
}

.btn-primary:hover {
  background: #fff;
  color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animated-word {
  display: inline-block;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.animated-subtitle {
  opacity: 0;
  animation: fadeIn 1s ease-out 2s forwards;
}

/* Slick Dots Styling */
.slick-dots {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  bottom: 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 5px;
  cursor: pointer;
  border: 0;
  background: #ccc;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  background: #ddd;
  outline: none;
}

.slick-dots li.slick-active button {
  background: var(--primary-color);
}

/* Related Slider Arrows */
.related-slider .slick-prev,
.related-slider .slick-next {
  background: transparent;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.related-slider .slick-prev iconify-icon,
.related-slider .slick-next iconify-icon {
  font-size: 20px;
}


/* About Us css Start */
#aboutus{
  font-family: var(--font-family);
}
.about-banner {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 80px 0;
  font-family: var(--font-family);
}

.about-banner .auto-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
}
.about-banner .auto-container .subtitle {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
}
.about-banner .auto-container .pattern-image {
  margin: 15px 0;
}
.about-banner .auto-container .pattern-image img {
  width: 150px;
}
.about-banner .auto-container h1 {
  font-family: var(--tertiary-font);
  font-weight: 700;
  font-size: 3rem;
  color: #fff;
}


.about-banner .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-banner .image-layer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* কালো শ্যাডো */
  background: rgba(0, 0, 0, 0.4);
  /* শুধু নিচের দিকে fade shadow চাইলে */
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
}

.about-banner .inner {
  animation: fadeInUp 1.5s ease-in-out;
  
}
.about-banner .inner h1 {
   font-family: var(--second-family);
   font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.about-banner .inner p {
  font-size: 15px;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}


/* About Us css end */



#aboutus {
  background: #fff;
}

#aboutus h5 {
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

#aboutus h2 {
  font-size: 32px;
  line-height: 1.3;
}

#aboutus .about-img {
  border-radius: 10px;
  transition: 0.3s;
}

#aboutus .about-img:hover {
  /* transform: scale(1.05); */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#aboutus .about-img2 {
  width: 80%;
}

#aboutus .about-img3 {
  width: 80%;

}

#aboutus .years {
  border-left: 5px solid var(--primary-color);
  color: var(--primary-color);
}

#aboutus .chefs {
  color: var(--primary-color);
  border-left: 5px solid var(--primary-color);

}

#aboutus p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

#aboutus .btn-warning {
  border-radius: 5px;
  transition: 0.3s;
}

#aboutus .btn-warning:hover {
  background: var(--primary-color);
}


#aboutus .aboutus_heading {
  font-family: var(--second-family);
  margin-bottom: 5px;
  color: var(--primary-color);
}

#aboutus h2 .text-warning {
  color: var(--primary-color);
}

#aboutus .about_subHeading {
  color: var(--primary-color);
}

/* about us end */




/* masonry */


#masonry {
  margin-bottom: 80px;
}



#masonry h1 {
  font-family: var(--second-family);
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 50px;
}

#masonry .grid-wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 150px;
  grid-auto-flow: dense;
}

#masonry .grid-wrapper>div {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

#masonry .grid-wrapper>div:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

#masonry .grid-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#masonry .wide {
  grid-column: span 2;
}

#masonry .tall {
  grid-row: span 2;
}

#masonry .big {
  grid-column: span 2;
  grid-row: span 2;
}


/*masonry  end */




/*review css  */



#review {
    background-color: #fff;
    /* padding: 100px 0 460px; */
    position: relative;
    margin-bottom: 20px;
    
}
#review h1{
	font-weight: 600;
	font-size: 40px;
	line-height: 120%;
	text-align: center;
	color: var(--gren-gray-scale-900);
	margin-bottom: 43px;
}

#review .reviewcards {
    margin: 15px;
}
#review .reviewcards{
  	border: 1px solid var(--gray-scale-gray-–-100);
	border-radius: 10px;
      padding: 20px;
      	background: var(--gray-scale-white);
}

#review .reviewcardscount {
	position: relative; 
  }
  
#review .reviewcardscount img{
	margin-bottom: 20px;
	text-align: center;
}
#review .reviewcardscount p{
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-align: center;
	color: var(--gren-gray-scale-600);
}


#review .reviewcardscount img {
	margin: 0 auto 20px;
	display: block;
}


#review .reviewcardsimg img {
	margin: 0 auto 20px;
	display: block;
}
 
#review  .reviewcardsimg h5{
font-weight: 500;
margin-top: 15px;
font-size: 16px;
line-height: 150%;
text-align: center;
color: var(--gren-gray-scale-900);
}
#review  .reviewcardsimg p{
font-weight: 400;
font-size: 14px;
line-height: 150%;
text-align: center;
color: var(--gren-gray-scale-500);
/* margin-bottom: 100px; */
}

#review .container{
	position: relative;
}



#review  .leftArrow,
#review  .rightArrow {
width: 45px;
	height: 45px;
	border: 1px solid #383838;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	color: #000;
	cursor: pointer;
	transition: 0.25s ease-in;
}




#review  .leftArrow,
#review  .rightArrow {
	position: absolute;
	top: 65%;
	transform: translateY(-50%);

}
#review  .leftArrow:hover,
#review  .rightArrow:hover {
background: var(--primary-color);
color: var(--gray-scale-white);
border: none;
}

#review .leftArrow {
	left: -38px;
}

#review  .rightArrow {
	right: -38px;
}




.video-container {
	position: absolute;
	top: 90%;
	
}

 #review   .reviewcard-rating {
            margin-top: 15px;
            color: #ffc107;
            font-size: 1rem;
        }






/*review  css end  */
/* lightbox css */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 80%;
    animation: zoomIn 0.3s;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
}

#lightbox img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
    display: block;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
    line-height: 1;
}

@keyframes zoomIn {
    from {transform: scale(0.5) translate(-50%, -50%);}
    to {transform: scale(1) translate(-50%, -50%);}
}


/* Daily Deals - Promotional Banner Style */
.daily-deals-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.daily-deal-item {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
}

.daily-deal-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.daily-deal-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

.daily-deal-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.daily-deal-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
}

.daily-deal-item:hover .daily-deal-image-wrapper img {
    transform: scale(1.08);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .daily-deal-image-wrapper {
        height: 220px;
    }
    
    .daily-deals-list {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .daily-deal-image-wrapper {
        height: 200px;
    }
    
    .daily-deals-list {
        gap: 12px;
    }
}

#promotional_banner .heading img {
  top: -15px;
  position: absolute;
  left: -7px;
}