/* Home Banner Info Modal */
:root {
    --background-color: #f7f7f7;
    --primary-color: #c9386f;
    --primary-hover: #b92a61;
    --text-color: #323232;
    --text-hover: #313131;
    --secondary-text: #6b6b6b;
    --button-bg: #c9386f;
    --button-text-color: #ffffff;
    --button-on-hover: #b92a61;
    --header-bg: #ffffff;
    --footer-bg: #ffffff;
    --footer-bottom-bg: #ffffff;
    --border-color: #f4f4f4;
}
body.foodord-banner-modal-open {
  overflow: hidden;
}

.foodord-banner-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000; /* Higher than product modal */
  display: flex;
  align-items: center;
  justify-content: center;
}

.foodord-banner-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.foodord-banner-modal-dialog {
  position: relative;
  background: #fff;
  width: min(92vw, 520px);
  max-height: 85vh;
  border-radius: 14px;
  box-shadow: 0 24px 48px rgba(0,0,0,.18), 0 8px 16px rgba(0,0,0,.12);
  overflow: auto;
  z-index: 1;
  transform: translateY(10px) scale(.98);
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
}

.foodord-banner-modal-overlay.is-visible .foodord-banner-modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.foodord-banner-modal-header {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
}

.foodord-banner-modal-close {
  border: none;
  background: transparent;
  width: 34px;
  height: 34px;
  font-size: 26px;
  border-radius: 50%;
  cursor: pointer;
}
.foodord-banner-modal-close:hover { background: transparent; }
.foodord-banner-modal-close:focus { outline: none; }

.foodord-banner-modal-body {
  padding: 20px 24px 24px 24px;
}

/* Typography for injected content */
.foodord-banner-modal-body .foodord-info-title {
  display: block;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}

.foodord-banner-modal-body .foodord-info-text {
  margin: 0 0 10px 0;
  white-space: pre-wrap;
}

.foodord-banner-modal-body .foodord-info-text:last-child {
  margin-bottom: 0;
}

/* Compact design for company info */
.foodord-banner-modal-body .foodord-info-text:first-of-type {
  padding-bottom: 2px;
}/* Phone link alignment fix */
.foodord-banner-modal-body .foodord-info-phone-text {
  margin: 0;
  padding: 0;
}

/* Google Maps styling */
.foodord-banner-modal-body .foodord-google-map {
  margin-top: 12px;
  border-radius: 8px;
  overflow: hidden;
}
.foodord-banner-modal-body .foodord-google-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 8px;
  display: block;
}

/* Full-bleed map at top of modal */
.foodord-banner-modal-map-wrap {
  margin: 0;
}
.foodord-banner-modal-map-wrap iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

/* Hours block - Clean minimal design */
.wr-hours {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.wr-hours__title {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
}

.wr-hours__segmented {
  display: flex;
  width: 100%;
  gap: 4px;
  background: #f9fafb;
  padding: 4px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.wr-hours__tab {
  flex: 1;
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  background: #fff;
  text-decoration: none;
  text-align: center;
  transition: all .2s ease;
}.wr-hours__tab.is-active {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.wr-hours__panel {
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .2s ease, transform .2s ease;
}

.wr-hours__panel.is-active {
  opacity: 1;
  transform: translateY(0);
}

.wr-hours__panel:not(.is-active) {
  display: none;
}

.wr-hours__week {
  margin: 0;
}

.wr-hours__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wr-hours__list li {
  padding: 8px 12px;
  background: #f9fafb;
  border-radius: 6px;
  transition: background .15s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wr-hours__list li:hover {
  background: #f3f4f6;
}

/* Current day color coding */
.wr-hours__list li.current-day-open {
  background: #dcfce7;
  border-left: 3px solid #16a34a;
}

.wr-hours__list li.current-day-open:hover {
  background: #bbf7d0;
}

.wr-hours__list li.current-day-closed {
  background: #fef2f2;
  border-left: 3px solid #dc2626;
}


.wr-hours__list li.current-day-closed:hover {
  background: #fecaca;
}

/* Delivery Info Block */
.wr-delivery-info {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f3f4f6;
}

.wr-delivery-info__title {
  margin: 0 0 14px 0;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
}

.wr-delivery-info__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
}

.wr-delivery-info__item {
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.wr-delivery-info__item:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.wr-delivery-info__loc {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wr-delivery-info__city,
.wr-delivery-info__dist {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

.wr-delivery-info__zip,
.wr-delivery-info__label {
  font-size: 12px;
  color: #6b7280;
}

.wr-delivery-info__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 2px;
}

.wr-delivery-info__fee {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #9ca3af;
  white-space: nowrap;
}

.wr-delivery-info__min {
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.wr-cookie-banner {
	position: fixed;
	left: 32px;
	bottom: 32px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 6px;
	max-width: 420px;
	width: calc(100% - 64px);
	padding: 24px 24px 20px;
	border: 1px solid #cdcdcd;
	border-radius: 20px;
	background: #ffffff;
	color: #1c1c1e;
	box-shadow: 0 20px 40px -20px rgba(15, 23, 42, 0.28);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.wr-cookie-banner.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.wr-cookie-banner__title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: -4px;
    order: -1;
}
.wr-cookie-banner__content {
	flex: 1 1 auto;
	font-size: 14px;
	line-height: 1.5;
	color: inherit;
}

.wr-cookie-banner__content p {
	margin: 0;
}

.wr-cookie-banner__actions {
	display: flex;
	flex: 0 0 auto;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
	margin-top: auto;
}

.wr-cookie-banner__actions:only-child {
	justify-content: flex-end;
}

.wr-cookie-banner__link {
	font-size: 14px;
	color: #000000;
	text-decoration: underline;
	padding: 8px 14px;
}

.wr-cookie-banner__link:hover {
	text-decoration: none;
}

.wr-cookie-banner__button {
	border: none;
	border-radius: 8px;
	padding: 10px 22px;
	background: #111827;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.01em;
	cursor: pointer;
}

.wr-cookie-banner__button:active {
	transform: translateY(0);
}

@media (max-width: 600px) {
	.wr-cookie-banner {
		left: 20px;
		right: 20px;
		width: auto;
		max-width: none;
		gap: 16px;
		padding: 20px;
		text-align: center;
	}

	.wr-cookie-banner__actions {
		justify-content: center;
		flex-wrap: wrap;
	}

	.wr-cookie-banner__link,
	.wr-cookie-banner__button {
		width: 100%;
		text-align: center;
	}
}