.store‑notice-build {
  width: 63%;
  margin: 0 auto;
  color: #0078ae;
}

.store‑notice-build a {
  color: #0078ae;
}

.pizza-grid-pizza {
  display: grid;
  grid-template-columns: repeat(auto-fit, 280px);
  gap: 25px;
  justify-content: start;
  /* Center the cards */
  margin: 15px auto;
}

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

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

.order-buttonsss {
  display: flex;
}

.order-title h2 {
  font-family: "One Dot Condensed Bold";
  margin: 0;
  font-size: 36px;
  color: white;
  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;
  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;
}

.options-footer-main {
  border: 2px solid rgba(85, 85, 85, 0.2);
}

.options-footer-pizza {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  background: #f4f4f4;
  border-bottom: 2px solid rgba(85, 85, 85, 0.2);
  font-size: 13px;
}

.option-two {
  padding: 20px;
}

.option-two2 {
  padding: 12px;
}

.option-three {
  padding: 29px;
}

.footer-options {
  padding: 20px;
  border-right: 2px solid rgba(85, 85, 85, 0.2);
}

.footer-options-last {
  padding: 20px;
}

.options-footer-main h2 {
  background-color: #006491;
  padding: 15px;
  color: white;
}

.options-footer-pizza h4 {
  color: #0066a5;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: bold;
}

.options-footer-pizza ul {
  list-style: none;
  padding-left: 0;
  color: #555;
}

.options-footer-pizza li {
  margin-bottom: 4px;
}

/* code for product popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.popup-content h2 {
  color: #000;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: white;
  width: 100%;
  display: flex;
  max-width: 927px;
  text-align: start;
  min-width: 320px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: all 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.popup-overlay.active .popup-content {
  transform: scale(1);
}

.popup-header {
  position: relative;
  overflow: hidden;
  width: 35%;
  border-radius: 10px;
  padding: 30px 0px;
}

.popup-pizza-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border-radius: 10px;
  height: 293px;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-body {
  padding: 30px;
  width: 65%;
}

.popup-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.price-section {
  background: #f8f9fa;
  border-radius: 10px;
  margin: 28px 0;
}
.choose_size {
  border: 1px solid #c5c5c5;
}
.price-title {
  font-weight: bold;
  background-color: #0066a5;
  color: white !important;
  padding: 10px;
  text-align: start;
  margin-bottom: 10px;
  font-size: 18px;
}

.size-options {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0px 20px;
}

.size-option {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  background-color: #b8d6e3;
  transition: all 0.3s ease;
  border-color: #0078ae;

}

.size-option:hover,
.size-option.active {
  border-color: #0078ae;
  background: #0078ae;
}

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

.size-price {
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
}
.choose_ingredinets {
  border: 1px solid #c5c5c5;
}
.ingredients-section {
  margin-bottom: 25px;
  margin-top: 15px;
}

.ingredients-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  background-color: #0066a5;
  padding: 10px;
    color: white !important;
}

.ingredients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px;
}

.ingredient-tag {
  background: #e31837;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.popup-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.action-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

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

.add-to-cart-btn:hover {
  background: #c41230;
  transform: translateY(-2px);
}

.cancel-btn {
  background: #6c757d;
  color: white;
}
.ingredient-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 5px 0;
  font-size: 14px;
  font-family: 'Segoe UI', sans-serif;
}

.ingredient-checkbox input[type="checkbox"] {
  transform: scale(1.2);
  accent-color: #006491;
  cursor: pointer;
}



/* Responsive Design */
@media (max-width: 768px) {
  .popup-content {
    display: block;
    width: 90%;
    margin: 20px;
  }

  .popup-body {
    padding: 20px;
  }


  .size-option {
    min-width: auto;
  }

  .popup-actions {
    flex-direction: column;
  }

  .pizza-grid-pizza {
    padding: 10px;
    display: block;
  }

  .store‑notice-build {
    width: 93%;
    margin-top: 20px;
  }
}