/* Cleopatra Pizzeria — design tokens, self-hosted fonts, shared class contract */

:root{
  --cleo-black: #000000;
  --cleo-white: #FFFFFF;
  --cleo-gold:  #9C7B2C;
  --cleo-sand:  #CFA670;
  --cleo-stone: #6E6A63;
  --cleo-offwhite: #F2F0EC;
  --cleo-border: #E4E1DA;

  --cleo-display: "Archivo Condensed", "Arial Narrow", sans-serif;
  --cleo-script:  "Caveat Brush", cursive;
  --cleo-body:    "Lora", Georgia, serif;
  --cleo-label:   "Work Sans", system-ui, sans-serif;
}

/* ------------------------------------------------------------------ */
/* Self-hosted fonts                                                   */
/* ------------------------------------------------------------------ */

@font-face{
  font-family: "Archivo Condensed";
  src: url("../fonts/archivo-condensed-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Work Sans";
  src: url("../fonts/work-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Lora";
  src: url("../fonts/lora-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Lora";
  src: url("../fonts/lora-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Caveat Brush";
  src: url("../fonts/caveat-brush-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------------------------------------ */
/* Base / accessibility                                                */
/* ------------------------------------------------------------------ */

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible{
  outline: 2px solid var(--cleo-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.cleo-skip-link{
  position: absolute;
  top: -100px;
  left: 8px;
  z-index: 100000;
  background: var(--cleo-black);
  color: var(--cleo-white);
  font-family: var(--cleo-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 14px 20px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  text-decoration: none;
  transition: top .15s ease;
}
.cleo-skip-link:focus{
  top: 8px;
}

/* ------------------------------------------------------------------ */
/* .cleo-ghost-band — oversized repeating numeral background layer     */
/* ------------------------------------------------------------------ */

.cleo-ghost-band{
  position: absolute;
  left: -6%;
  right: -6%;
  top: 42%;
  z-index: 0;
  overflow: hidden;
  display: block;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.cleo-ghost-band--bottom{
  top: auto;
  bottom: 6%;
}
.cleo-ghost-band--upper{
  top: 26%;
}
.cleo-ghost-band p{
  display: block !important;
  overflow: visible !important;
  white-space: nowrap;
  font-family: var(--cleo-display) !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  font-size: clamp(4rem, 18vw, 14rem) !important;
  line-height: 1 !important;
  letter-spacing: .01em;
  color: var(--cleo-offwhite) !important;
  margin: 0 !important;
}
.cleo-ghost-band--dark p{
  color: rgba(255,255,255,.04) !important;
}

.cleo-ghost-band--dark{
  color: rgba(255,255,255,.04);
}
.cleo-ghost-band span{
  padding-inline: .5em;
}

/* ------------------------------------------------------------------ */
/* .cleo-badge — circular gold badge                                   */
/* ------------------------------------------------------------------ */

.cleo-badge{
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--cleo-gold);
  color: var(--cleo-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--cleo-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .8rem;
  line-height: 1.25;
  padding: 12px;
  flex-shrink: 0;
}

/* ------------------------------------------------------------------ */
/* .cleo-hero-clip — diagonal hero underside                           */
/* ------------------------------------------------------------------ */

.cleo-hero-clip{
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 96.5%);
}

/* ------------------------------------------------------------------ */
/* .cleo-diagonal-stripe — placeholder diagonal stripe backgrounds     */
/* ------------------------------------------------------------------ */

.cleo-diagonal-stripe{
  background-image: repeating-linear-gradient(107deg, #0A0A0A 0 22px, #121110 22px 44px);
}
.cleo-diagonal-stripe--light{
  background-image: repeating-linear-gradient(107deg, var(--cleo-offwhite) 0 22px, #E8E5DE 22px 44px);
}

/* ------------------------------------------------------------------ */
/* .cleo-photo-circle — circular image frame                           */
/* ------------------------------------------------------------------ */

.cleo-photo-circle{
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--cleo-offwhite) !important;
}
.cleo-photo-circle img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ------------------------------------------------------------------ */
/* .cleo-script-accent — handwritten accent                            */
/* ------------------------------------------------------------------ */

.cleo-script-accent{
  font-family: var(--cleo-script);
  font-weight: 400;
  color: var(--cleo-gold);
  line-height: 1.2;
}

/* ------------------------------------------------------------------ */
/* .cleo-carousel — horizontal snap row                                */
/* ------------------------------------------------------------------ */

.cleo-carousel{
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cleo-carousel::-webkit-scrollbar{
  display: none;
}
.cleo-carousel > .e-con-inner{
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cleo-carousel > .e-con-inner::-webkit-scrollbar{
  display: none;
}
.cleo-carousel > .cleo-menu-card,
.cleo-carousel > .e-con-inner > *{
  scroll-snap-align: start;
  flex-shrink: 0 !important;
  width: 80% !important;
}
@media (min-width: 900px){
  .cleo-carousel > .cleo-menu-card,
  .cleo-carousel > .e-con-inner > *{
    width: 31% !important;
  }
}

.cleo-carousel-dots{
  display: flex;
  gap: 4px;
  justify-content: center;
}
.cleo-carousel-dot{
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.cleo-carousel-dot::before{
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cleo-border);
  transition: background .15s ease, transform .15s ease;
}
.cleo-carousel-dot[aria-current="true"]::before{
  background: var(--cleo-gold);
  transform: scale(1.2);
}

/* ------------------------------------------------------------------ */
/* .cleo-sticky-bar — fixed mobile bottom bar                          */
/* ------------------------------------------------------------------ */

.cleo-sticky-bar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: stretch;
  background: var(--cleo-black);
  border-top: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 -4px 16px rgba(0,0,0,.25);
  transform: translateY(100%);
  transition: transform .25s ease;
}
.cleo-sticky-bar.is-visible{
  transform: translateY(0);
}
.cleo-sticky-bar__link{
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 8px 16px;
  color: var(--cleo-white);
  font-family: var(--cleo-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: .85rem;
  text-decoration: none;
}
.cleo-sticky-bar__link--cta{
  background: var(--e-global-color-accent, var(--cleo-gold));
  color: var(--e-global-color-primary, var(--cleo-black));
}
@media (min-width: 900px){
  .cleo-sticky-bar{
    display: none;
  }
}

/* ------------------------------------------------------------------ */
/* .cleo-status-badge — open/closed status                             */
/* ------------------------------------------------------------------ */

.cleo-status-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--cleo-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: .85rem;
  color: var(--cleo-stone);
}
.cleo-status-badge::before{
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cleo-stone);
  flex-shrink: 0;
}
.cleo-status-badge[data-cleo-open="true"]::before{
  background: #3F7D45;
}
.cleo-status-badge[data-cleo-open="false"]::before{
  background: #A23B3B;
}

/* ------------------------------------------------------------------ */
/* .cleo-salsa-flask — grid cell for salsa strength icons               */
/* ------------------------------------------------------------------ */

.cleo-salsa-flask{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 6px;
}

/* ------------------------------------------------------------------ */
/* Cookie consent banner                                               */
/* ------------------------------------------------------------------ */

.cleo-consent{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  background: var(--cleo-black);
  color: var(--cleo-white);
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  font-family: var(--cleo-body);
  font-size: .95rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.cleo-consent[hidden]{
  display: none;
}
.cleo-consent__text{
  flex: 1 1 260px;
  margin: 0;
  line-height: 1.5;
}
.cleo-consent__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cleo-consent__btn{
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 4px;
  border: 1px solid var(--cleo-white);
  background: transparent;
  color: var(--cleo-white);
  font-family: var(--cleo-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: .8rem;
  cursor: pointer;
}
.cleo-consent__btn--accept{
  background: var(--cleo-gold);
  border-color: var(--cleo-gold);
}

/* ------------------------------------------------------------------ */
/* Header — keep nav menu on one line                                 */
/* ------------------------------------------------------------------ */

.elementor-element-cleonavmenu1,
.elementor-element-cleonavmenu2{
  flex-shrink: 0;
}

/* ------------------------------------------------------------------ */
/* .cleo-grid-4up-item — 4-column benefits grid, wraps responsively   */
/* ------------------------------------------------------------------ */

.cleo-grid-4up-item{
  width: calc(25% - 15px);
}
@media (max-width: 1024px){
  .cleo-grid-4up-item{
    width: calc(50% - 10px);
  }
}
@media (max-width: 600px){
  .cleo-grid-4up-item{
    width: 100%;
  }
}

/* ------------------------------------------------------------------ */
/* .cleo-overlap-* — photo-circle caption/badge overlap positioning */
/* ------------------------------------------------------------------ */

.cleo-overlap-wrap{
  position: relative;
}
.cleo-overlap-caption{
  position: absolute;
  left: 2%;
  top: -34px;
  z-index: 2;
}
@media (max-width: 700px){
  .cleo-overlap-caption{
    top: -10px;
    font-size: 1.6rem;
  }
}
.cleo-overlap-badge{
  position: absolute;
  right: -6%;
  top: 46%;
  z-index: 2;
}
@media (max-width: 700px){
  .cleo-overlap-badge{
    right: 0;
  }
}

/* ------------------------------------------------------------------ */
/* .cleo-fields-grid — 2×2 bordered benefits grid (matches mockup)    */
/* ------------------------------------------------------------------ */

.cleo-fields-grid > .e-con-inner{
  display: grid !important;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--cleo-border);
}
@media (min-width: 900px){
  .cleo-fields-grid > .e-con-inner{
    grid-template-columns: 1fr 1fr;
  }
}
.cleo-fields-grid > .e-con-inner > *{
  border-bottom: 1px solid var(--cleo-border);
  padding: 36px 32px 36px 0 !important;
  width: auto !important;
}
@media (min-width: 900px){
  .cleo-fields-grid > .e-con-inner > *:nth-child(even){
    border-left: 1px solid var(--cleo-border);
    padding-left: 32px !important;
    padding-right: 0 !important;
  }
}

/* ------------------------------------------------------------------ */
/* .cleo-social-btn — circular Fb/Ig text badge (matches mockup)      */
/* ------------------------------------------------------------------ */

.cleo-social-btn .elementor-button{
  width: 52px !important;
  height: 52px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  border-radius: 50% !important;
  border: 1px solid currentColor !important;
  color: var(--cleo-white) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--cleo-label) !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: .06em;
  text-decoration: none !important;
  background-color: transparent !important;
  background-image: none !important;
  padding: 0 !important;
  line-height: 1 !important;
  box-shadow: none !important;
  fill: currentColor !important;
  transition: background-color .15s ease, color .15s ease;
}
.cleo-social-btn .elementor-button:hover{
  background-color: var(--cleo-white) !important;
  color: var(--cleo-black) !important;
}

/* ------------------------------------------------------------------ */
/* .cleo-hours-table — day-by-day opening hours (Hitta hit section)   */
/* ------------------------------------------------------------------ */

.cleo-hours-label{
  font-family: var(--cleo-label) !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-top: 1px solid var(--cleo-stone);
  padding-top: 14px !important;
  margin-bottom: 0 !important;
}
.cleo-hours-row{
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1A1A1A;
  padding: 11px 0;
}
.cleo-hours-row p{
  margin: 0 !important;
}
.cleo-hours-value{
  font-family: var(--cleo-label) !important;
  font-size: 14px !important;
  letter-spacing: .12em;
}

/* ------------------------------------------------------------------ */
/* .cleo-hero-photo-layer — hero background photo placeholder         */
/* ------------------------------------------------------------------ */

.cleo-hero-clip{
  position: relative;
}
.cleo-hero-photo-layer{
  position: absolute !important;
  inset: 0;
  z-index: 0;
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  padding: 0 32px 64px;
  pointer-events: none;
}
.cleo-hero-photo-layer p{
  margin: 0 !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace !important;
  font-size: 12px !important;
  color: var(--cleo-stone) !important;
  max-width: 320px;
  text-align: right;
}

/* ------------------------------------------------------------------ */
/* .cleo-salsa-grid — salsa strength picker, wraps as a real grid     */
/* ------------------------------------------------------------------ */

.cleo-salsa-grid .e-con-inner{
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
@media (min-width: 1100px){
  .cleo-salsa-grid .e-con-inner{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}
.cleo-salsa-grid .e-con-inner > *{
  width: auto !important;
  flex-shrink: initial !important;
}

/* ------------------------------------------------------------------ */
/* .cleo-carousel-dots wrapper + clickable dots                        */
/* ------------------------------------------------------------------ */

.cleo-carousel-dots{
  display: flex !important;
  gap: 4px;
  justify-content: center;
}
.cleo-carousel-dot{
  cursor: pointer;
}

/* ------------------------------------------------------------------ */
/* .cleo-salsa-row — salsa strength picker, natural-width flex row    */
/* ------------------------------------------------------------------ */

.cleo-salsa-row > .e-con-inner{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (min-width: 600px){
  .cleo-salsa-row > .e-con-inner{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1300px){
  .cleo-salsa-row > .e-con-inner{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}
.cleo-salsa-row > .e-con-inner > *{
  width: auto !important;
  min-width: 0;
}
.cleo-salsa-row > .e-con-inner > * p{
  overflow-wrap: anywhere;
}

/* ------------------------------------------------------------------ */
/* .cleo-menu-card / .cleo-price-tag — dish price corner tag           */
/* (matches mockup: small tag at top-left of the photo circle,        */
/* not a circular badge like .cleo-badge)                             */
/* ------------------------------------------------------------------ */

.cleo-menu-card{
  position: relative;
}
.cleo-price-tag{
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  background: var(--cleo-gold);
  color: var(--cleo-white);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-family: var(--cleo-label);
  font-weight: 500;
  text-transform: none;
  letter-spacing: .04em;
  font-size: 13px;
  line-height: 1;
  padding: 12px 14px;
  flex-shrink: 0;
}

/* ------------------------------------------------------------------ */
/* .cleo-header-row — mobile/tablet header layout fix                  */
/* Elementor's native justify_content/align_items controls aren't     */
/* emitting CSS in this Elementor version (verified in generated       */
/* post CSS — only --flex-direction is output, no --justify-content). */
/* Desktop is untouched; this only applies below 1024px.               */
/* ------------------------------------------------------------------ */

@media (max-width: 1024px){
  .cleo-header-row > .e-con-inner{
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  .cleo-header-row > .e-con-inner > *{
    width: auto !important;
  }
}
/* ------------------------------------------------------------------ */
/* Photos inside .cleo-photo-circle — fill and clip to the circle      */
/* (image widget replaced the old [ FOTO: ... ] text placeholders)     */
/* ------------------------------------------------------------------ */

.cleo-photo-circle > .e-con-inner{
  width: 100%;
  height: 100%;
  padding: 0 !important;
}
.cleo-photo-circle .elementor-widget-image,
.cleo-photo-circle .elementor-widget-image .elementor-widget-container,
.cleo-photo-circle figure,
.cleo-photo-circle .elementor-image{
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  line-height: 0;
}
.cleo-photo-circle img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* Full-bleed photo layers now carry a real background image — make sure
   they actually have height to show it, and keep the diagonal stripe as a
   fallback only when no image loads. */
.cleo-hero-photo-layer{
  padding: 0 !important;
}
/* ------------------------------------------------------------------ */
/* Sedan-1999 section: column alignment + Se menyn badge              */
/* align_self emits no CSS in this Elementor version, so it is here.  */
/* ------------------------------------------------------------------ */

@media (min-width: 1025px){
  .cleo-about-text{ align-self: center !important; }
}

.cleo-overlap-badge{
  right: -6% !important;
  top: 44% !important;
  z-index: 3;
}
.cleo-overlap-badge .elementor-button{
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  color: var(--cleo-white) !important;
  font-family: var(--cleo-label) !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.3 !important;
  text-align: center;
  white-space: normal;
}

@media (max-width: 1024px){
  .cleo-overlap-badge{
    right: 2% !important;
    top: auto !important;
    bottom: 4%;
    width: 108px !important;
    height: 108px !important;
  }
}
@media (max-width: 700px){
  .cleo-overlap-badge{ width: 92px !important; height: 92px !important; }
  .cleo-overlap-badge .elementor-button{ font-size: 11px !important; letter-spacing: .08em; }
}

/* ------------------------------------------------------------------ */
/* Bygg din burrito - option rows + mobile-first salsa list           */
/* Deliberately diverges from the mockup on mobile (user request):    */
/* the 2-col icon grid was ragged and very tall, so below 768px the   */
/* salsa picker becomes a compact scannable list instead.             */
/* ------------------------------------------------------------------ */

.cleo-opt-row > .e-con-inner{
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: space-between !important;
  align-items: baseline;
  gap: 16px;
  width: 100%;
}
.cleo-opt-row{
  border-bottom: 1px solid var(--cleo-border);
  padding: 14px 0 !important;
}
.cleo-opt-row > .e-con-inner > *{ width: auto !important; }
.cleo-opt-row p{ margin: 0 !important; }
.cleo-opt-price{ flex-shrink: 0 !important; text-align: right; }
.cleo-opt-price p{ white-space: nowrap; }

@media (max-width: 767px){
  .cleo-salsa-row > .e-con-inner{
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    border-top: 1px solid var(--cleo-border);
  }
  .cleo-salsa-cell{
    display: grid !important;
    grid-template-columns: 46px 26px 1fr;
    column-gap: 14px;
    align-items: center;
    padding: 12px 0 !important;
    border-bottom: 1px solid var(--cleo-border);
  }
  .cleo-salsa-cell > .e-con-inner{ display: contents !important; }
  .cleo-salsa-cell .elementor-widget-image{
    grid-column: 1;
    grid-row: 1 / span 4;
    align-self: center;
  }
  .cleo-salsa-cell img{
    width: auto !important;
    height: 50px !important;
    max-width: none !important;
    display: block;
    margin: 0 auto;
  }
  .cleo-salsa-num{
    grid-column: 2;
    grid-row: 1 / span 4;
    align-self: center;
  }
  .cleo-salsa-num .elementor-heading-title{
    font-size: 20px !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    color: var(--cleo-gold) !important;
  }
  .cleo-salsa-cell > *:not(.elementor-widget-image):not(.cleo-salsa-num){ grid-column: 3; }
  .cleo-salsa-cell .cleo-script-accent{ margin: 0 !important; padding: 0 !important; }
  .cleo-salsa-cell .cleo-script-accent > .e-con-inner{ padding: 0 !important; align-items: flex-start !important; }
  .cleo-salsa-name .elementor-heading-title{
    font-size: 15px !important;
    letter-spacing: .03em !important;
    line-height: 1.35 !important;
  }
  .cleo-salsa-cell .elementor-widget-text-editor p{
    margin: 2px 0 0 !important;
    font-size: 14px !important;
  }
}

@media (min-width: 768px){
  /* keep the price visually tied to its option instead of stranding it */
  /* at the far edge of a 1360px row */
  .cleo-opt-row{ max-width: 620px; }
}

/* ------------------------------------------------------------------ */
/* Bygg din burrito: Steg 1 and Steg 2 side by side from 1100px       */
/* (matches the design: narrow protein list left, salsa grid right).  */
/* Below 1100px they stack and the salsa picker uses the mobile list. */
/* ------------------------------------------------------------------ */

@media (min-width: 1025px){
  .cleo-burrito-cols > .e-con-inner{
    display: grid !important;
    grid-template-columns: 1fr 2fr;
    column-gap: 56px;
    align-items: start;
  }
  .cleo-burrito-cols > .e-con-inner > *{ width: auto !important; }
  /* the protein list fills its own column now, so drop the standalone cap */
  .cleo-opt-row{ max-width: none; }
}

/* smaller salsa bottles */
.cleo-salsa-cell img{
  max-width: 44px !important;
  height: auto !important;
}
@media (max-width: 767px){
  .cleo-salsa-cell img{
    max-width: none !important;
    width: auto !important;
    height: 42px !important;
  }
}

/* salsa names are headings: let them wrap inside narrow grid columns */

.cleo-salsa-row > .e-con-inner > *{ min-width: 0 !important; }

/* ------------------------------------------------------------------ */
/* Header: between 1025px and ~1300px the logo + 4 nav items + CTA     */
/* did not fit and the CTA spilled ~28px past the viewport, giving the */
/* whole page a horizontal scrollbar. Allow the row to shrink instead. */
/* ------------------------------------------------------------------ */

.cleo-header-row > .e-con-inner{
  flex-wrap: nowrap !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 20px;
}
.cleo-header-row > .e-con-inner > *{ min-width: 0; }
.cleo-header-row .elementor-nav-menu--main .elementor-nav-menu{
  flex-wrap: nowrap;
}
@media (min-width: 1025px) and (max-width: 1320px){
  .cleo-header-row .elementor-nav-menu--main .elementor-item{
    padding-left: 9px !important;
    padding-right: 9px !important;
  }
  .cleo-header-row .elementor-widget-button .elementor-button{
    padding-left: 16px !important;
    padding-right: 16px !important;
    white-space: nowrap;
  }
}

/* The logo container was greedily taking ~613px of the header row,   */
/* squeezing the CTA widget to 98px while its inner link needed 191px  */
/* -> the link spilled past the viewport. Size the three parts properly. */
.cleo-header-row > .e-con-inner > *:first-child{
  flex: 0 0 auto !important;
  width: auto !important;
}
.cleo-header-row > .e-con-inner > .elementor-widget-nav-menu{
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 0;
}
.cleo-header-row > .e-con-inner > .elementor-widget-button{
  flex: 0 0 auto !important;
  width: auto !important;
}

/* ------------------------------------------------------------------ */
/* Salsa labels: normal-case names + uppercase descriptors, matching   */
/* the reference. Uppercase + letter-spacing made the names ~40% wider */
/* than the 117px grid column, which forced ugly mid-word breaks.      */
/* ------------------------------------------------------------------ */

.cleo-salsa-name .elementor-heading-title{
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-family: var(--cleo-label) !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  overflow-wrap: break-word;
}
.cleo-salsa-cell .elementor-widget-text-editor p{
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: var(--cleo-label) !important;
  font-size: 11px !important;
  line-height: 1.5 !important;
  color: var(--cleo-stone) !important;
}
@media (max-width: 767px){
  .cleo-salsa-name .elementor-heading-title{ font-size: 16px !important; }
  .cleo-salsa-cell .elementor-widget-text-editor p{ font-size: 11px !important; }
}

/* keep the longest single-word name (Chipotlesalsa) on one line in the */
/* narrow 7-column grid instead of hyphen-less mid-word wrapping        */
@media (min-width: 768px){
  .cleo-salsa-name .elementor-heading-title{
    font-size: 14px !important;
    overflow-wrap: normal;
  }
}

/* ------------------------------------------------------------------ */
/* .cleo-badge is an Elementor container, and Elementor gives every    */
/* container width:var(--width,100%) + align-self:stretch, which beat  */
/* the plain 130px rule and flattened the badge into a full-width bar. */
/* ------------------------------------------------------------------ */
.cleo-badge{
  width: 130px !important;
  height: 130px !important;
  min-height: 0 !important;
  flex: 0 0 auto !important;
  align-self: flex-start !important;
  border-radius: 50% !important;
}
.cleo-badge > .e-con-inner{
  width: 100%;
  height: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}
@media (max-width: 767px){
  .cleo-badge{ width: 104px !important; height: 104px !important; }
}

/* ------------------------------------------------------------------ */
/* cleo-badge fixed-size overrides - Elementor .e-con sets align-items */
/* via var(--align-items) and loads after this file, so !important is  */
/* required or the badge content stays top-aligned.                   */
/* ------------------------------------------------------------------ */
.cleo-badge{
  width: 130px !important;
  height: 130px !important;
  min-height: 0 !important;
  flex: 0 0 auto !important;
  align-self: flex-start !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
}
.cleo-badge > .e-con-inner{
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
@media (max-width: 767px){
  .cleo-badge{ width: 104px !important; height: 104px !important; }
}

/* inline links inside rich-text blocks (tel, e-post, adress) */
.elementor-widget-text-editor a{ color: var(--cleo-gold); text-decoration: none; }
.elementor-widget-text-editor a:hover{ text-decoration: underline; }

/* ------------------------------------------------------------------ */
/* Bestall online - centred hero with floating garnish decorations    */
/* ------------------------------------------------------------------ */
.cleo-order-head{ position: relative; }
.cleo-order-head > .e-con-inner{ align-items: center !important; text-align: center; }

.cleo-order-deco{ position: absolute !important; width: auto !important; pointer-events: none; z-index: 1; }
.cleo-order-deco > .e-con-inner{ padding: 0 !important; }
.cleo-order-deco img{ max-width: none; display: block; }
.cleo-order-deco--left{ left: 0; top: 2%; }
.cleo-order-deco--left img{ width: 240px; }
.cleo-order-deco--right{ right: 0; top: 32%; }
.cleo-order-deco--right img{ width: 260px; }

.cleo-order-shot{ position: relative; margin-top: 56px; }
.cleo-order-shot > .e-con-inner{ padding: 0 !important; }
.cleo-order-shot img{ width: 100%; height: 520px; object-fit: cover; object-position: center 45%; display: block; }
.cleo-order-badge{ position: absolute !important; right: 6%; bottom: 10%; z-index: 3; align-self: auto !important; }

@media (max-width: 1024px){
  .cleo-order-deco--left img{ width: 170px; }
  .cleo-order-deco--right img{ width: 185px; }
  .cleo-order-shot img{ height: 380px; }
}
@media (max-width: 767px){
  .cleo-order-deco--left{ left: -14%; top: 4%; }
  .cleo-order-deco--left img{ width: 125px; }
  .cleo-order-deco--right{ right: -12%; top: 38%; }
  .cleo-order-deco--right img{ width: 135px; }
  .cleo-order-shot{ margin-top: 36px; }
  .cleo-order-shot img{ height: 260px; }
  .cleo-order-badge{ right: 4%; bottom: 8%; }
}

/* order-hero refinements: keep garnish clear of the headline, keep the
   badge off the phone, and re-anchor the numeral band to the headline */
.cleo-order-head{ overflow: hidden; }
.cleo-ghost-band--upper{ top: 190px; }
.cleo-order-badge{ left: 6%; right: auto; }
@media (max-width: 767px){
  .cleo-ghost-band--upper{ top: 130px; }
  .cleo-order-deco--left{ left: -26%; top: 0; }
  .cleo-order-deco--left img{ width: 120px; }
  .cleo-order-deco--right{ right: -24%; top: 30%; }
  .cleo-order-deco--right img{ width: 130px; }
  .cleo-order-badge{ left: 4%; right: auto; }
}

/* the numeral band is too heavy behind the headline on narrow screens */
@media (max-width: 767px){
  .cleo-ghost-band--upper{ display: none; }
}
