/*
Theme Name: What Can I Eat Here LayerSlider
Theme URI: https://whatcanieathere.com/
Author: What Can I Eat Here
Description: Premium WordPress marketing front end preserving the custom member dashboard.
Version: 1.1.0
Requires at least: 6.0
Text Domain: wcieh-layerslider
*/

:root {
  --wcieh-black: #090b0f;
  --wcieh-ink: #111820;
  --wcieh-panel: #151b22;
  --wcieh-panel-2: #1d242c;
  --wcieh-cream: #f6efe3;
  --wcieh-paper: #fffaf0;
  --wcieh-muted: #73808c;
  --wcieh-gold: #d8a64d;
  --wcieh-orange: #e8872e;
  --wcieh-line: rgba(255, 255, 255, .14);
  --wcieh-dark-line: rgba(9, 11, 15, .12);
  --wcieh-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--wcieh-ink);
  background: var(--wcieh-black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.wcieh-page {
  min-height: 100vh;
  overflow-x: hidden;
}

.wcieh-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.wcieh-nav {
  position: fixed;
  z-index: 9999;
  top: 16px;
  left: 50%;
  width: min(1180px, calc(100vw - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(9, 11, 15, .92);
  box-shadow: var(--wcieh-shadow);
  backdrop-filter: blur(18px);
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}

.wcieh-nav.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -18px);
}

.wcieh-brand {
  display: inline-flex;
  align-items: center;
  min-width: 260px;
  gap: 10px;
}

.wcieh-brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .3);
}

.wcieh-brand-text {
  display: grid;
  line-height: 1.05;
}

.wcieh-brand-main {
  color: #fff;
  font-family: Sora, Inter, sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.wcieh-brand-sub {
  margin-top: 4px;
  color: var(--wcieh-gold);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.wcieh-links {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 800;
}

.wcieh-links a {
  border-radius: 8px;
  padding: 10px 11px;
}

.wcieh-links a:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.wcieh-actions,
.wcieh-hero-actions,
.wcieh-cta-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wcieh-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--wcieh-dark-line);
  border-radius: 8px;
  padding: 0 18px;
  background: #fff;
  color: var(--wcieh-ink);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
}

.wcieh-button.primary {
  border-color: var(--wcieh-gold);
  background: var(--wcieh-gold);
  color: #101010;
}

.wcieh-button.light,
.wcieh-button.ghost {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  box-shadow: none;
}

.wcieh-mobile-toggle {
  display: none;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.wcieh-mobile-toggle span,
.wcieh-mobile-toggle span::before,
.wcieh-mobile-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.wcieh-mobile-toggle span {
  position: relative;
  margin: auto;
}

.wcieh-mobile-toggle span::before,
.wcieh-mobile-toggle span::after {
  position: absolute;
  left: 0;
}

.wcieh-mobile-toggle span::before {
  top: -6px;
}

.wcieh-mobile-toggle span::after {
  top: 6px;
}

.wcieh-hero {
  min-height: 100vh;
  padding: 142px 0 82px;
  color: #fff;
  background: var(--wcieh-black);
}

.wcieh-hero-grid,
.wcieh-two-col,
.wcieh-launch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .82fr);
  align-items: center;
  gap: 58px;
}

.wcieh-kicker {
  margin: 0 0 14px;
  color: var(--wcieh-gold);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.35;
  text-transform: uppercase;
}

.wcieh-hero h1,
.wcieh-section h2 {
  margin: 0;
  font-family: Sora, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.wcieh-hero h1 {
  max-width: 790px;
  font-size: clamp(56px, 7.2vw, 104px);
  line-height: .92;
}

.wcieh-lede,
.wcieh-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.6;
}

.wcieh-lede {
  margin: 28px 0 0;
}

.wcieh-hero-actions {
  margin-top: 34px;
}

.wcieh-proof-row,
.wcieh-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.wcieh-proof-row span,
.wcieh-mini-list span {
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 850;
}

.wcieh-hero-visual {
  position: relative;
  min-height: 620px;
}

.wcieh-menu-board {
  position: relative;
  z-index: 3;
  width: min(100%, 430px);
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  padding: 24px;
  background: var(--wcieh-panel);
  box-shadow: var(--wcieh-shadow);
  animation: wciehFloat 6s ease-in-out infinite;
}

.wcieh-board-top,
.wcieh-order-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.wcieh-board-top span,
.wcieh-order-lines span,
.wcieh-feature-panel span,
.wcieh-phone-screen span {
  color: var(--wcieh-gold);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.wcieh-board-top strong {
  color: #fff;
  font-size: 15px;
}

.wcieh-order-card {
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  padding: 18px;
  background: var(--wcieh-panel-2);
}

.wcieh-score {
  display: grid;
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  place-items: center;
  border: 10px solid var(--wcieh-gold);
  border-radius: 50%;
  color: #fff;
  font-size: 25px;
  font-weight: 950;
}

.wcieh-order-card strong,
.wcieh-feature-panel strong {
  display: block;
  color: #fff;
  font-family: Sora, Inter, sans-serif;
  font-size: 24px;
  line-height: 1.1;
}

.wcieh-order-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.45;
}

.wcieh-order-lines {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.wcieh-order-lines span {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .8);
}

.wcieh-plate-scene {
  position: absolute;
  right: 110px;
  bottom: 72px;
  z-index: 2;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  background: #f7f1e7;
  box-shadow: var(--wcieh-shadow);
}

.wcieh-plate-scene span {
  position: absolute;
  display: block;
}

.plate {
  inset: 44px;
  border: 18px solid #fff;
  border-radius: 50%;
  background: #f1eadf;
}

.protein {
  top: 104px;
  left: 72px;
  width: 124px;
  height: 76px;
  border-radius: 40px 48px 38px 46px;
  background: #8f3e26;
  transform: rotate(-12deg);
}

.egg {
  top: 78px;
  right: 82px;
  width: 72px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
}

.egg::after {
  position: absolute;
  inset: 17px 22px;
  border-radius: 50%;
  background: var(--wcieh-gold);
  content: "";
}

.side-one,
.side-two {
  right: 74px;
  bottom: 86px;
  width: 92px;
  height: 18px;
  border-radius: 99px;
  background: var(--wcieh-orange);
  transform: rotate(-28deg);
}

.side-two {
  right: 110px;
  bottom: 68px;
  background: #f1c15e;
  transform: rotate(18deg);
}

.wcieh-logo-panel {
  position: absolute;
  right: 8px;
  bottom: 0;
  z-index: 4;
  width: 190px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  padding: 10px;
  background: #242423;
  box-shadow: var(--wcieh-shadow);
}

.wcieh-logo-panel img {
  display: block;
  border-radius: 6px;
}

.wcieh-section {
  scroll-margin-top: 92px;
  padding: 104px 0;
  color: var(--wcieh-ink);
  background: var(--wcieh-cream);
}

.wcieh-section h2 {
  max-width: 820px;
  color: var(--wcieh-ink);
  font-size: clamp(42px, 6vw, 82px);
  line-height: .96;
}

.wcieh-section .wcieh-copy {
  color: #4f5c68;
}

.wcieh-app-section {
  background: var(--wcieh-paper);
}

.wcieh-app-section .wcieh-kicker,
.wcieh-workflow .wcieh-kicker,
.wcieh-launch-section .wcieh-kicker {
  color: #9b6a22;
}

.wcieh-app-section .wcieh-mini-list span {
  border-color: var(--wcieh-dark-line);
  background: #fff;
  color: var(--wcieh-ink);
}

.wcieh-phone {
  position: relative;
  width: min(360px, 100%);
  margin: 0 auto;
  border: 12px solid #0c0e12;
  border-radius: 40px;
  padding: 18px;
  background: #0c0e12;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
  transform: rotate(2deg);
}

.wcieh-phone-speaker {
  width: 78px;
  height: 7px;
  margin: 0 auto 14px;
  border-radius: 99px;
  background: #2d333a;
}

.wcieh-phone-screen {
  overflow: hidden;
  border-radius: 24px;
  padding: 18px;
  background: #f7f1e6;
}

.wcieh-phone-screen header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.wcieh-phone-screen img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.wcieh-phone-screen header strong,
.wcieh-phone-screen b {
  color: var(--wcieh-ink);
  font-family: Sora, Inter, sans-serif;
}

.wcieh-phone-screen section {
  display: grid;
  gap: 5px;
  margin-bottom: 12px;
  border: 1px solid rgba(9, 11, 15, .12);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.wcieh-phone-screen section.active {
  background: #111820;
}

.wcieh-phone-screen section.active b,
.wcieh-phone-screen section.active small {
  color: #fff;
}

.wcieh-phone-screen small {
  color: #5e6b76;
  line-height: 1.35;
}

.wcieh-phone-screen button {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--wcieh-gold);
  color: #111;
  font-weight: 950;
}

.wcieh-workflow {
  background: var(--wcieh-cream);
}

.wcieh-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.wcieh-work-grid article,
.wcieh-feature-panel article {
  border: 1px solid var(--wcieh-dark-line);
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(9, 11, 15, .08);
}

.wcieh-work-grid span {
  color: var(--wcieh-orange);
  font-weight: 950;
}

.wcieh-work-grid h3 {
  margin: 18px 0 10px;
  font-family: Sora, Inter, sans-serif;
  font-size: 24px;
  line-height: 1.1;
}

.wcieh-work-grid p {
  margin: 0;
  color: #56636f;
  line-height: 1.6;
}

.wcieh-plus-section {
  color: #fff;
  background: #0d1117;
}

.wcieh-plus-section h2 {
  color: #fff;
}

.wcieh-plus-section .wcieh-copy {
  color: rgba(255, 255, 255, .72);
}

.wcieh-feature-panel {
  display: grid;
  gap: 14px;
}

.wcieh-feature-panel article {
  border-color: rgba(255, 255, 255, .12);
  background: var(--wcieh-panel);
}

.wcieh-feature-panel strong {
  margin-top: 8px;
  font-size: 21px;
}

.wcieh-launch-section {
  background: var(--wcieh-paper);
}

.wcieh-launch-grid {
  grid-template-columns: minmax(0, 1fr) auto;
}

.wcieh-launch-section .wcieh-button.light {
  border-color: var(--wcieh-dark-line);
  background: #fff;
  color: var(--wcieh-ink);
}

.wcieh-footer {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 30px 0;
  color: rgba(255, 255, 255, .68);
  background: #07080b;
}

.wcieh-footer .wcieh-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.wcieh-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

.cookieadmin_law_container {
  right: 16px !important;
  bottom: 16px !important;
  left: auto !important;
  width: min(360px, calc(100vw - 32px)) !important;
  max-width: min(360px, calc(100vw - 32px)) !important;
  box-sizing: border-box !important;
}

.cookieadmin_consent_inside {
  max-width: 100% !important;
  overflow: hidden !important;
  border-radius: 8px !important;
}

.cookieadmin_notice_con,
.cookieadmin_notice_con p {
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
}

body.admin-bar .wcieh-nav {
  top: 48px;
}

@keyframes wciehFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 1000px) {
  .wcieh-links,
  .wcieh-actions {
    display: none;
  }

  .wcieh-mobile-toggle {
    display: grid;
    place-items: center;
  }

  .wcieh-nav.is-open {
    align-items: flex-start;
  }

  .wcieh-nav.is-open .wcieh-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(9, 11, 15, .98);
    box-shadow: var(--wcieh-shadow);
  }

  .wcieh-hero-grid,
  .wcieh-two-col,
  .wcieh-launch-grid {
    grid-template-columns: 1fr;
  }

  .wcieh-hero-visual {
    min-height: 560px;
  }

  .wcieh-menu-board {
    margin-right: auto;
    margin-left: 0;
  }

  .wcieh-work-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .wcieh-inner {
    width: min(100% - 28px, 1180px);
  }

  .wcieh-nav {
    top: 10px;
    left: 14px;
    width: calc(100vw - 28px);
    transform: none !important;
  }

  .wcieh-nav.is-hidden {
    transform: translateY(-18px) !important;
  }

  .wcieh-brand {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }

  .wcieh-brand-icon {
    width: 38px;
    height: 38px;
  }

  .wcieh-brand-main {
    font-size: 13px;
  }

  .wcieh-brand-sub {
    font-size: 8px;
  }

  .wcieh-hero {
    min-height: auto;
    padding: 112px 0 58px;
  }

  .wcieh-hero h1 {
    max-width: 360px;
    font-size: clamp(43px, 13vw, 58px);
    line-height: .96;
  }

  .wcieh-lede,
  .wcieh-copy {
    font-size: 17px;
  }

  .wcieh-hero-actions,
  .wcieh-cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .wcieh-button {
    width: 100%;
  }

  .wcieh-proof-row,
  .wcieh-mini-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .wcieh-hero-visual {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .wcieh-menu-board,
  .wcieh-logo-panel,
  .wcieh-plate-scene {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: 0;
  }

  .wcieh-menu-board {
    animation: none;
  }

  .wcieh-plate-scene {
    width: min(280px, 100%);
    height: 280px;
    margin: 0 auto;
  }

  .wcieh-section {
    padding: 70px 0;
  }

  .wcieh-section h2 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1;
  }

  .wcieh-phone {
    width: min(330px, 100%);
    transform: none;
  }

  .wcieh-work-grid article,
  .wcieh-feature-panel article {
    padding: 22px;
  }

  .wcieh-footer .wcieh-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookieadmin_law_container {
    right: 10px !important;
    bottom: 8px !important;
    left: 10px !important;
    width: calc(100vw - 20px) !important;
    max-width: none !important;
  }

  .cookieadmin_consent_inside {
    padding: 12px 14px !important;
  }

  .cookieadmin_notice_con h2,
  .cookieadmin_notice_con h3 {
    margin-bottom: 6px !important;
    font-size: 15px !important;
    line-height: 1.15 !important;
  }

  .cookieadmin_notice_con,
  .cookieadmin_notice_con p {
    font-size: 13px !important;
    line-height: 1.25 !important;
  }

  .cookieadmin_consent_btns {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    margin-top: 8px !important;
  }

  .cookieadmin_consent_inside .cookieadmin_btn {
    width: 100% !important;
    min-height: 34px !important;
    min-width: 0 !important;
    padding: 6px 8px !important;
    font-size: 13px !important;
  }

  .cookieadmin_accept_btn {
    grid-column: 1 / -1 !important;
  }
}
