@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* tc-scoped:tc-wp-tool-root */

.tc-wp-tool-root {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: flow-root;
  isolation: isolate;
  position: relative;
}
.tc-wp-tool-root img,
.tc-wp-tool-root video,
.tc-wp-tool-root svg,
.tc-wp-tool-root iframe {
  max-width: 100%;
  height: auto;
}

.tc-wp-tool-root .lunch-time-calculator-wrapper{
  --lunch-time-calculator-background: #fff7e6;
  --lunch-time-calculator-surface: #ffffff;
  --lunch-time-calculator-primary: #237a57;
  --lunch-time-calculator-secondary: #f5c542;
  --lunch-time-calculator-accent: #d94b35;
  --lunch-time-calculator-text: #24302c;
  --lunch-time-calculator-muted-text: #66736e;
  --lunch-time-calculator-border: #d9e3dc;
  --lunch-time-calculator-success: #1f8a5b;
  --lunch-time-calculator-error: #b93228;
  width: 100%;
  max-width: none;
  position: relative;
  overflow: hidden;
  padding: 48px 18px;
  box-sizing: border-box;
  background:
    radial-gradient(circle at 8% 12%, rgba(245, 197, 66, 0.28), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(35, 122, 87, 0.18), transparent 28%),
    radial-gradient(circle at 88% 88%, rgba(217, 75, 53, 0.14), transparent 32%),
    var(--lunch-time-calculator-background);
  color: var(--lunch-time-calculator-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}.tc-wp-tool-root .lunch-time-calculator-wrapper *{
  box-sizing: border-box;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-container{
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-header{
  text-align: center;
  margin-bottom: 28px;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-title{
  margin: 0;
  color: var(--lunch-time-calculator-text);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: 0;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-subtitle{
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--lunch-time-calculator-muted-text);
  font-size: 18px;
  line-height: 1.55;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-form, .tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-result, .tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-breakdown, .tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-notes{
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--lunch-time-calculator-border);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(36, 48, 44, 0.11);
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-form{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 24px;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-field{
  min-width: 0;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-field-wide{
  grid-column: span 4;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-label{
  display: block;
  margin-bottom: 8px;
  color: var(--lunch-time-calculator-text);
  font-size: 14px;
  font-weight: 750;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-input, .tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-select{
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--lunch-time-calculator-border);
  border-radius: 12px;
  background: #fffdf8;
  color: var(--lunch-time-calculator-text);
  font-size: 16px;
  padding: 10px 12px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-input:focus, .tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-select:focus{
  border-color: var(--lunch-time-calculator-primary);
  box-shadow: 0 0 0 4px rgba(35, 122, 87, 0.16);
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-inline-input{
  display: flex;
  align-items: center;
  gap: 10px;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-inline-input .lunch-time-calculator-input{
  flex: 1 1 auto;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-unit{
  flex: 0 0 auto;
  color: var(--lunch-time-calculator-muted-text);
  font-size: 14px;
  font-weight: 700;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-actions{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-button{
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  color: var(--lunch-time-calculator-text);
  box-shadow: 0 8px 18px rgba(36, 48, 44, 0.13);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-button:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(36, 48, 44, 0.16);
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-button:focus{
  outline: none;
  box-shadow: 0 0 0 4px rgba(35, 122, 87, 0.18), 0 10px 22px rgba(36, 48, 44, 0.15);
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-button-primary{
  background: var(--lunch-time-calculator-primary);
  color: #ffffff;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-button-secondary{
  background: var(--lunch-time-calculator-secondary);
  color: #30270c;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-button-accent{
  background: var(--lunch-time-calculator-accent);
  color: #ffffff;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-validation{
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  padding: 12px 16px;
  border: 1px solid var(--lunch-time-calculator-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--lunch-time-calculator-muted-text);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-validation.lunch-time-calculator-validation-error{
  border-color: rgba(185, 50, 40, 0.45);
  background: rgba(185, 50, 40, 0.08);
  color: var(--lunch-time-calculator-error);
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-validation.lunch-time-calculator-validation-success{
  border-color: rgba(31, 138, 91, 0.42);
  background: rgba(31, 138, 91, 0.08);
  color: var(--lunch-time-calculator-success);
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-result, .tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-breakdown, .tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-notes{
  padding: 24px;
  margin-top: 18px;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-section-title{
  margin: 0 0 16px;
  color: var(--lunch-time-calculator-text);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 850;
  text-align: center;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-result-grid, .tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-breakdown-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-result-item, .tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-breakdown-item{
  min-width: 0;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--lunch-time-calculator-border);
  border-radius: 14px;
  background: #fffdf8;
  text-align: center;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-result-label, .tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-breakdown-label{
  color: var(--lunch-time-calculator-muted-text);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 750;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-result-value, .tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-breakdown-value{
  color: var(--lunch-time-calculator-text);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 850;
  overflow-wrap: anywhere;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-notes{
  text-align: center;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-note{
  margin: 0;
  color: var(--lunch-time-calculator-text);
  font-size: 16px;
  font-weight: 800;
}.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-helper{
  margin: 8px 0 0;
  color: var(--lunch-time-calculator-muted-text);
  font-size: 14px;
  line-height: 1.45;
}@media (max-width: 900px) {.tc-wp-tool-root .lunch-time-calculator-wrapper{
    padding: 36px 14px;
  }.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-form, .tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-result-grid, .tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-breakdown-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-field-wide{
    grid-column: span 2;
  }.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-actions{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}@media (max-width: 560px) {.tc-wp-tool-root .lunch-time-calculator-wrapper{
    padding: 28px 12px;
  }.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-subtitle{
    font-size: 15px;
  }.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-form, .tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-result, .tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-breakdown, .tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-notes{
    padding: 16px;
    border-radius: 15px;
  }.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-form, .tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-actions, .tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-result-grid, .tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-breakdown-grid{
    grid-template-columns: 1fr;
  }.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-field-wide{
    grid-column: span 1;
  }.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-button, .tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-input, .tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-select{
    min-height: 50px;
  }.tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-result-item, .tc-wp-tool-root .lunch-time-calculator-wrapper .lunch-time-calculator-breakdown-item{
    min-height: 94px;
  }}.tc-wp-tool-root{
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin-top: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  z-index: 0 !important;
}