body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f6f6f6;
}

.navbar {
  background-color: #006699;
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
}

.nav-container {
  display: flex;
  /* justify-content: space-around; */
  align-items: center;
  flex-wrap: wrap;
  color: white;
  font-size: 14px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.nav-container a,
.login,
.cart,
.store-btn {
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin: 5px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.login {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.logo img {
  height: 40px;
}

.store-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  border: 2px solid white;
  padding: 6px 10px;
  gap: 10px;
}

i {
  font-size: x-large;
}

.cart {
  position: relative;
}

.badge {
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
  position: absolute;
  top: -2px;
  right: 17px;
}

/* sidebar for small screens */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 250px;
  height: 100vh;
  background-color: #0078ae;
  /* moved here */
  box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: left 0.3s ease-in-out;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.mobile-sidebar.active {
  left: 0;
}

.sidebar-header {
  display: flex;
  justify-content: flex-end;
  padding: 0px 15px;
}

.close-btn i {
  font-size: 28px;
  cursor: pointer;
  color: white;
}

.sidebar-menu {
  background-color: #0078ae;
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.menu-toggle {
  display: none;
}

.sidebar-menu li a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
}

.sidebar-menu li a:hover {
  background-color: #e0e0e0;
}

.mobile-logins {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  padding-top: 3rem;
  color: white;
  background-color: #005580;
}

.mobile-logins a {
  text-decoration: none;
  color: white;
}

.subnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: hsla(0, 0%, 100%, 0.95);
  padding: 14px;
  display: none;
}

.subnav a {
  text-decoration: none;
  color: #0078ae;
  font-size: 18px;
  font-family: One Dot Condensed Bold, Arial Narrow, Arial, Helvetica,
    sans-serif;
  font-weight: 600;
  letter-spacing: 0.02rem;
}

.subnav-store {
  display: flex;
  align-items: center;
  gap: 7px;
}

.subnav-store i {
  font-size: 18px;
}

.order_online {
  display: none;
}

/* promo section code */
.promo-div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  padding: 10px;
}

.callxone_pictures {
  display: none;
}

.small_screen_links {
  display: none;
}

@media (max-width: 768px) {
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px;
  }

  .popup-drinks {
    width: auto;
    max-width: 100%;
    margin: auto;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: -32px;
    height: auto;

  }

  .menu-toggle i {
    font-size: 30px;
  }

  .store-btn {
    width: 100%;
    justify-content: flex-start;
  }

  .login,
  .cart {
    align-self: flex-end;
    margin-top: 10px;
  }

  .navbar_items {
    display: none;
  }

  /* mobile navbar */
  .mobile-nav-toggle {
    display: block;
  }

  .menu-toggle {
    display: block;
  }

  .order-title {
    display: none !important;
  }

  .subnav {
    display: flex;
  }

  .order_online {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    background-color: hsla(0, 0%, 100%, 0.95);
    width: 93%;
    margin: 10px auto;
    margin-top: 48px !important;
  }

  .order_online h2 {
    color: #0078ae;
    margin: 0px;
    padding: 10px 0px;
  }

  .order_online a {
    text-decoration: none;
    color: white;
  }

  .order_online p {
    background-color: #e3193b;
    width: 100%;
    margin: 0;
    padding: 4px 0px;
    text-align: center;
    font-size: 24px;
    font-family: One Dot Condensed Bold, Arial Narrow, Arial, Helvetica,
      sans-serif;
  }

  .promo-div img {
    width: 100%;
  }

  .promo-small {
    display: flex;
    flex-direction: column;
  }

  .promo-side {
    display: none !important;
  }

  .calzone-row {
    display: none !important;
  }

  .callxone_pictures {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .callxone_pictures img {
    width: 100%;
  }

  .small_screen_links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 15px;
  }

  .small_screen_links p {
    background-color: #e3193b;
    width: 100%;
    padding: 10px 0px;
    text-align: center;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
  }

  .small_screen_links p a {
    color: white;
    text-decoration: none;
  }

  .order-title-bottom {
    display: block !important;
  }
}

/* “Start Your Order” Section */


.order-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  gap: 20px;
  margin-top: 15px;
  /* margin-bottom: 30px; */
  margin-top: 6rem;
  max-width: 1200px;
  /* background-color: #005580; */
  padding: 20px 40px;
  border-radius: 15px;
}

.order-title .line {
  flex: 1;
  height: 1px;
  border: none;
  background-color: #ccc;
}

.order-title h2 {
  margin: 0;
  color: #006491;
  letter-spacing: 1px;
}

.order-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.order-btn {
  background-color: #e60023;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.order-btn:hover {
  background-color: #cc001f;
  transform: scale(1.05);
}

.or-text {
  font-style: italic;
  color: #777;
  font-family: revert-layer;
  text-transform: lowercase;
  font-size: 20px;
}

/* order-tite for small screens */
.order-section-bottom {
  padding: 15px;
}

.order-title-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  gap: 20px;
  margin-bottom: 30px;
  max-width: 930px;
  background-color: #005580;
  padding: 20px 0px;
  border-radius: 15px;
  display: none;
}

.order-title-bottom .line {
  flex: 1;
  height: 1px;
  border: none;
  background-color: #ccc;

}

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

.order-title-bottom h2 {
  margin: 0;
  font-size: 18px;
  color: white;
  padding: 12px 0px;
  text-align: center;
  letter-spacing: 1px;
}

.order-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.order-btn-bottom {
  background-color: #e60023;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.order-btn-bottom:hover {
  background-color: #cc001f;
  transform: scale(1.05);
}

.or-text-bottom {
  font-style: italic;
  color: #ffffff;
  font-family: revert-layer;
  text-transform: lowercase;
  font-size: 20px;

}

/* 🎨 GX Custom Popup Styles */
.gx-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: "Segoe UI", sans-serif;
}

.gx-popup.hidden {
  display: none;
}

.gx-popup-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
}

.gx-popup-box {
  background: #ffffff;
  padding: 25px 30px;
  max-width: 400px;
  width: 90%;
  z-index: 10000;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

.gx-popup-title {
  font-size: 22px;
  color: #006699;
  margin: 0 0 10px;
}

.gx-popup-message {
  font-size: 15px;
  color: #333333;
  margin-bottom: 20px;
}

.gx-popup-btn {
  background-color: #006699;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.gx-popup-btn:hover {
  background-color: #006699;
}

.gx-popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #666;
  cursor: pointer;
}


/* Popup Styling */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.popup-content h2 {
  color: #e74c3c;
  margin-bottom: 10px;
}

.popup-content p {
  color: #333;
  margin-bottom: 20px;
  font-size: 16px;
}

.popup-content button {
  background-color: #c0392b;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.popup-content button:hover {
  background-color: #c0392b;
}

.add-to-cart-btn {
  background-color: #e31837;
}

.hidden {
  display: none;
}

.popup-close {
  background-color: transparent !important;
  color: black !important;
}

/* promo section start */

.promo-section {
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
}

.promo-row {
  display: flex;
  max-width: 1000px;
  justify-content: space-between;
  flex-wrap: wrap;
  /* align-items: center; */
  gap: 25px;
  margin: auto;
}

.promo-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.promo-small img {
  border-radius: 10px;
}

/* Bottom single image */
.calzone-row {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.calzone-card img {
  border-radius: 10px;
  max-width: 960px;
  margin-bottom: 30px;
}

.promo-all {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/* ----------  Footer  ---------- */

.site-footer {
  background: #d9d9d9;
  padding: 50px 20px 30px;
  /* max-width: 1000px; */
  margin-top: 2rem;
  display: flex;
  /* justify-content: center;
    align-items: center; */
  flex-direction: column;
  font-family: "Arial", sans-serif;
  color: #004b6b;
  text-align: center;
}

.footer-top {
  max-width: 1180px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 600;
  margin-bottom: 40px;
}

.footer-links a {
  color: #004b6b;
  text-decoration: none;
  margin: 20px 0;
  font-size: 15px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links .divider {
  color: #004b6b;
}

.footer-center {
  display: flex;
  align-items: center;
  gap: 7%;
  /* margin: 20px 0; */
}

.social-icons {
  display: flex;
  gap: 35px;
  font-size: 28px;
  margin-bottom: 25px;
}

.social-icons a i {
  color: #0078ae;
}

.social-icons a {
  color: #004b6b;
}

.social-icons a:hover {
  color: #0072bb;
}

.call-badge img {
  width: 150px;
  height: auto;
}

.footer-note {
  font-size: 12px;
  margin: 40px 0;
  line-height: 1.5;
  font-weight: bold;
  text-align: start;
}

.footer-note a {
  color: #0072bb;
  text-decoration: none;
}

.footer-note a:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .popup-drinks {
    width: auto;
    max-width: 100%;
    margin: auto;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: -32px;
    height: auto;

  }

  .footer-top {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    margin-bottom: 20px;
  }
}

/* Responsive adjustments */

@media (max-width: 900px) {
  .popup-drinks {
    width: auto;
    max-width: 100%;
    margin: auto;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: -32px;
    height: auto;

  }

  .promo-row {
    flex-direction: column;
  }

  .promo-side {
    flex-direction: row;
  }

  .promo-small {
    flex: 1;
  }

  .calzone-cards {
    flex-direction: column;
  }
}

/* === Login Popup Overlay === */
.login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.login-popup {
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  width: 400px;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.login-popup h1 {
  font-size: 22px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.login-popup p,
.login-popup label,
.login-popup a {
  font-size: 14px;
}

.login-popup input,
.login-popup select,
.login-popup textarea {
  width: 100%;
  margin: 8px 0 12px;
  padding: 10px;
  font-size: 14px;
}

.password-wrapper {
  position: relative;
}

.toggle-password {
  position: absolute;
  top: 7px;
  right: 10px;
  font-size: 12px;
  background: #eee;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
}

.btn {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: none;
  font-weight: bold;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border-radius: 4px;
}

.login-order {
  background-color: #007dc5;
}

.login-leave {
  background-color: #e31837;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

/* pizza tracker */
.pizza-tracker {
  max-width: 1000px;
  margin-left: auto;
  text-align: center;
  margin-right: auto;
}

.popup-drinks {
  width: 50%;
  max-width: 100%;
  margin: auto;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 20px;
  height: auto;
}

.popup-drinks h1 {
  font-size: 26px;
  margin-bottom: 20px;
  padding: 10px;
  color: gray;
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 24px;
  cursor: pointer;
}

.content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
}

.popup-drinks img {
  width: 100%;
}

.options {
  width: 100%;
  /* background: radial-gradient(black, transparent); */
  border: 1px solid lightgray;
  padding: 17px;
}

.SERVICE h2 {
  font-size: 15px;
  background-color: #006699;
  padding: 10px;
  color: white;
}

.item-list h2 {
  font-size: 15px;
  margin-bottom: 20px;
  background-color: #006699;
  padding: 10px;
  color: white;
}

.option-buttons {
  display: flex;
  border: 2px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 15px;
}

.option-buttons button {
  flex: 1;
  padding: 10px;
  border: none;
  background: #fff;
  cursor: pointer;
}

.option-buttons p {
  flex: 1;
  padding: 10px;
  margin: 0px;
  border: none;
  background: #fff;
  cursor: pointer;
}

.option-buttons .active {
  background-color: #0071b9;
  color: white;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
}

.quantity-selector2 {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: end;
  ;
}

.select-options {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
}

#select_button button {
  transition: background-color 0.3s ease;
}

.quantity-selector h3 {
  font-size: 15px;
  margin-bottom: 20px;
  padding: 10px;
  color: slategray;
}

.quantity-selector button {
  width: 32px;
  height: 32px;
  font-size: 20px;
  border: none;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}
.quantity-selector2 button {
  width: 32px;
  height: 32px;
  font-size: 20px;
  border: none;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.item-list {
  /* border-top: 2px solid #0071b9; */
  margin-top: 20px;
  padding-top: 10px;
}

.item-list span {
  color: green;
  font-weight: bold;
}

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

.actions .cancel-btn {
  background: white;
  border: 2px solid #0071b9;
  color: #0071b9;
  padding: 12px;
  width: 48%;
  font-weight: bold;
  cursor: pointer;
}

.actions .add-btn {
  background-color: #e31c3d;
  border: 2px solid #e31c3d;
  color: white;
  padding: 12px;
  width: 48%;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 500px) {
  .popup {
    padding: 15px;
  }

  .content {
    flex-direction: column;
    align-items: center;
  }

  .content img {
    max-width: 150px;
  }

  .popup-drinks {
    width: auto;
    max-width: 100%;
    margin: auto;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: -32px;
    height: auto;

  }

  .quantity-selector {
    justify-content: center;
  }

  .actions button {
    width: 100%;
  }
}