* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {

  background-size:cover;
  background-position:center;
  background-attachment:fixed;
  background-color: #000;

}

/*
.navbar {
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 52px;
  margin-left: 30px;
}

.nav-links {
  display: flex;
  gap: 25px;
  margin-right: 30px;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
}
 */



.navbar {
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  z-index: 10;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 52px;
  margin-left: 30px;
}

.nav-links {
  display: flex;
  gap: 25px;
  margin-right: 30px;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 30px;
    background-color: #000;
    padding: 10px 0;
  }

  /* .nav-link {
    color: white;
    text-align: center;
    text-decoration: none;
    padding: 12px 0;
    border-top: 1px solid #333;
    font-size: 16px;
  } */

  .nav-link:first-child {
    border-top: none;
  }
}



.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    flex-direction: column;
    background-color: #000;
    padding: 10px 0;
    margin-top: 20px;
  }

  .mobile-bottom-nav .nav-link {
    color: white;
    text-align: center;
    text-decoration: none;
    padding: 12px;
    font-size: 16px;
    border-top: 1px solid #333;
  }

  .mobile-bottom-nav .nav-link:first-child {
    border-top: none;
  }

  .navbar .nav-links {
    display: none;
  }
}


.header {
  position: relative;
  height: 250px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.7);
}

.white-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64%;
  background: linear-gradient(
    to bottom,
    white 0px,
    white 200px,
    rgba(255, 255, 255, 0.8) 230px,
    rgba(255, 255, 255, 0.5) 450px,
    rgba(255, 255, 255, 0) 600px
  );
  pointer-events: none;
}


.header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.pre-order-banner {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-size: 20px;
  font-weight: bold;
}

.restaurant-card {
  background-color: white;
  margin: -50px auto 30px;
  width: 100%;
  max-width: 1100px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 25px;
  position: relative;
}

.restaurant-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.restaurant-info h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.categories {
  color: #666;
  margin-bottom: 10px;
}

.address {
  display: flex;
  align-items: center;
  color: #666;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.star {
  color: #ffd700;
}

.rating-score {
  font-weight: bold;
}

.info-button {
  color: #3498db;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
}

.actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.schedule-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 20px;
  border: 1px solid #e74c3c;
  border-radius: 30px;
  color: #e74c3c;
  background: none;
  cursor: pointer;
  font-size: 15px;
}

.order-options {
  display: flex;
  gap: 10px;
  background-color: #f5f5f5;
  border-radius: 30px;
  padding: 5px;
}

.order-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
}

.order-option.active {
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pre-order-text {
  font-size: 12px;
  color: #666;
}

.menu-container {
  display: flex;
  gap: 20px;
  margin: 30px auto;
  width: 100%;
  max-width: 1450px;
  align-items: flex-start;
}

.categories-sidebar {
  width: 21%;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 0;
  height: fit-content;
  position: sticky;
  top: 20px;
}

.category {
  padding: 12px 15px;
  border-left: 6px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
}

.category:hover {
  background-color: #f7f7f7;
}

.category.active {
  border-left-color: #e74c3c;
  color: #e74c3c;
  background-color: #fff0f0;
}

.category-hr {
  margin: 0;
  border: 0;
  height: 1px;
  background-color: #eee;
}


.menu-items {
  flex: 1;
}

.section-title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.section-title i {
  margin-right: 10px;
  color: #666;
  font-size: 25px;
}

.recommended-section {
  background-color: #e6f7f2;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.menu-item {
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.menu-item-title {
  font-weight: 500;
  margin-bottom: 10px;
}

.menu-item-price {
  color: #333;
  font-weight: bold;
}

.search-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.download-banner {
  width: 100%;
  max-width: 1200px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.download-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.download-icon {
  position: relative;
  font-size: 3rem;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 100px;
}

.download-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.download-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
}

.download-subtitle {
  font-size: 1rem;
  color: #333;
}

.download-buttons {
  display: flex;
  gap: 15px;
}

.store-button {
  height: 40px;
  cursor: pointer;
  transition: transform 0.2s;
}

.store-button:hover {
  transform: scale(1.05);
}


.app-store {
  background-color: #000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 5px 15px;
  height: 40px;
}

.app-store-icon {
  font-size: 24px;
  color: white;
  margin-right: 5px;
}

.app-store-text {
  color: white;
  font-size: 12px;
  display: flex;
  flex-direction: column;
}

.app-store-small {
  font-size: 8px;
}


.google-play {
  background-color: #000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 5px 15px;
  height: 40px;
}

.google-play-icon {
  font-size: 22px;
  color: white;
  margin-right: 5px;
}

.google-play-text {
  color: white;
  font-size: 12px;
  display: flex;
  flex-direction: column;
}

.google-play-small {
  font-size: 8px;
}
/* .container {
  margin-top: 30px;
  background-color: #F7F7F7;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
} */

.head {
  padding: 20px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.head h1 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.pizza-item {
  display: flex;
  margin: 20px;
  border-radius: 10px;
  overflow: hidden;
  /* background-color: #f7f7f7; */
  background-color:#EDEDED;
}

.pizza-info {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pizza-name {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.pizza-description {
  color: #666;
  padding-left: 25px;
}
/*
.pizza-image {
  width: 20%;
  min-height: 30px;
  background-size: cover;
  background-position: center;
}

.sizes-container {
  display: flex;
  flex-wrap: wrap;
  margin: 10px;
}

.size-option {
  flex: 1;
  margin: 10px;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  min-width: 150px;
} */
/*
.size-row {
    display: flex;
    width: 100%;
}

.size-name {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}

.size-price {
  color: #333;
  font-size: 16px;
} */

.scroll-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #333;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.arrow-up {
  width: 20px;
  height: 20px;
  border-left: 3px solid white;
  border-top: 3px solid white;
  transform: rotate(45deg);
  margin-top: 5px;
}



.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  align-content: center;
  justify-items: center;

}



.popup-content {
  background-color: #fff;
  padding: 24px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  max-height: 200vh;
  overflow-y: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
}

/* Close button in top right */
.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
  font-size: 20px;
  color: #666;
}

.popup-it {
  margin: 15px 0;
}

.popup-it-price {
  display: flex;
  flex-direction: column;
  margin: 15px 0;
  gap: 10px;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .popup-content {
    padding: 16px;
    width: 85%;
    border-radius: 10px;
    text-align: left;
  }

  .popup-close {
    font-size: 18px;
    top: 8px;
    right: 8px;
  }

  .popup-it,
  .popup-it-price {
    margin: 10px 0;
  }

  .popup-it-price {
    gap: 8px;
  }
}


.incre-decre {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  margin: 0 8px;
  background-color: transparent;
  cursor: pointer;
}

.add {
  background-color: #28a745;
  color: white;
  padding: 10px 20px;
  margin-left: 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.add:hover {
  background-color: #218838;
}


/*
.popup {
position:fixed;
top: 0;
left: 0;
width: 100%;
height: 50%;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;


}

.popup-content {
background-color: white;

border-radius: 5px;
width: 30%;
text-align: right;
margin-left: 32%;
height: 98%;


display: flex;
flex-direction: column;
overflow: hidden;

} */


 @media (max-width: 600px) {
    .incre-decre {
      width: 60px !important;
    }
  }

.popup-it{
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 20px;
height: 200px;
/* margin-right: 20px; */
/* margin-left: 20px; */

}

.popup-it p i {
color: #34c759;
font-size: 18px;
margin-right: 8px;
vertical-align: middle;
}

.popup-close {
font-size:30px;
color: gray;
margin-right: 10px;
/* text-align: right; */

}

/* .popup-modifier{
display: flex;
flex-direction: column;
align-items: flex-start;
font-size: 25px;
} */

input[type=radio] {
margin-top: 10px;
width: 20px;
height: 20px;
}

input[type=checkbox] {
margin-top: 10px;
width: 20px;
height: 20px;
}

/*
.popup-close {
position: absolute;
top: 10px;
right: 10px;
font-size: 20px;
cursor: pointer;
} */

.popup h2 {
margin: 0;
font-size: 24px;
}

.popup-it h2{
margin-top: 20px;
}

.popup p {
font-size: 18px;
}

.popup-row-1 {
padding: 20px;
flex: 1;
overflow-y: auto;
margin-bottom: 10px;
}

.popup-row-2 {
height: 200px;
flex-shrink: 0;
}

.msg{
background-color: #FBD7DA;
border-radius: 20px 20px 0px 0px;
font-size: 16px;
font-weight: bold;
text-align: left;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 5px;
padding-top: 5px;

}

/* .popup-modifier label {
justify-content: space-between;
}

.popup-modifier .price {
align-items: center;
} */


.popup-modifier {
display: flex;
flex-direction: column;
font-size: 25px;
gap: 10px;
}

.popup-modifier label {
display: flex;
align-items: center;
justify-content: space-between;
border-radius: 5px;
}

.popup-modifier .option-text {
display: flex;
align-items: center;
gap: 10px;
}

.popup-modifier .price {
min-width: 50px;
text-align: right;
}

.incre-decre{
height: 40px;
width:40px;
border:1px solid black;
border-radius: 50%;
background-color: white;
margin-left: 10px;
}

.add{
background-color: #ED515B;
width: 70%;
border-radius: 10px;
border:none;
height: 50px;

align-items:center ;
display:flex;
justify-content: space-between;
padding: 0 15px;
font-size: 18px;
color: white;
margin-right:10px;
}


.addTocardPopup {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1000;
pointer-events: none;
}

.addTocard-popcontent {
cursor: pointer;
position: absolute;
bottom: 20px;
right: 7%;
background-color: #ED515B;
padding: 20px;
border-radius: 10px;
width: 350px;
height: 100px;
color: white;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
pointer-events:all;

display: flex;
gap: 20px;
justify-content: space-between;

}

.first-div {
display: flex;
flex-direction: column;
align-items: left;
font-size: 20px;
text-align: left;
}

.second-div {
display: flex;
flex-direction: row;
align-items: center;
gap: 10px;
font-size: 20px;
text-align: right;

}




@media (max-width: 992px) {
  .menu-container {
    flex-direction: column;
    align-items: center;
  }

  .categories-sidebar {
    width: 100%;
    position: relative;
    top: 0;
    margin-bottom: 20px;
  }

  .download-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .download-buttons {
    justify-content: center;
  }

  .pizza-item {
    flex-direction: column;
  }

  .pizza-image {
    width: 100%;
    height: 200px;
  }
}


@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-container {
    margin: 20px;
  }

  .restaurant-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .actions {
    flex-direction: column;
    gap: 15px;
  }

  .order-options {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .download-banner {
    padding: 20px;
  }

  .download-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  
  
  .payment-methods {
    flex-direction: column;
    gap: 10px;
  }

  .middle-section {
    width: 100%;
  }
}


@media (max-width: 480px) {
  .header {
    height: 180px;
  }

  .pre-order-banner {
    font-size: 16px;
  }

  .restaurant-info h1 {
    font-size: 22px;
  }

  .section-title i {
    font-size: 20px;
  }

  .size-option {
    min-width: 120px;
    padding: 15px;
  }
}


