/** Shopify CDN: Minification failed

Line 590:0 Unexpected "}"

**/
/* ============================================
   BARRIO OTTAWA - CUSTOM STYLES
   ============================================ */

/* CSS VARIABLES */
:root {
  --azul: #273a4b;
  --orange: #e16d13;
  --light-orange: #ffb982;
  --white: #fff;
  --dark-navy-text: #26384a;
}

/* GLOBAL STYLES */
body {
  background-color: var(--azul) !important;
  font-size: 16px;
  font-family: 'Inconsolata', monospace;
}

/* TYPOGRAPHY */
h1, .h1 {
  text-transform: uppercase;
  font-family: Impact, Haettenschweiler, 'Franklin Gothic Bold', Charcoal, sans-serif;
  font-size: 44px;
  line-height: 87%;
  color: var(--orange);
}

h1.white, .h1.white {
  color: var(--white);
  margin-top: 0;
}

h1.centred, .h1.centred {
  text-align: center;
}

h1.centred.white, .h1.centred.white {
  font-size: 80px;
  line-height: 87%;
}

p, .paragraph {
  font-family: 'Inconsolata', monospace;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--orange);
}

.paragraph.white {
  color: var(--white);
}

.text-span, .i {
  color: var(--orange);
}

/* NAVIGATION */
.navigation-wrapper {
display: flex;
flex-direction: column;
gap: 0.3vh;
padding: 0.2vw 1vw;
}
.navigation-links {
display: flex;
justify-content: space-between;
align-items: center;
}
.navigation-links.nav-links--centered {
justify-content: center;
}

.nav-link {
  color: var(--orange);
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  line-height: 100%;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--light-orange);
}

.nav-link.large {
  font-size: 28px;
}

.nav-text {
  color: var(--orange);
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  line-height: 100%;
  text-decoration: none;
}

/* DIVIDERS */
.divider {
  background-color: #e16d13 !important;
  width: 100% !important;
  height: 2px !important;
  display: block !important;
  margin: 0.5vw 0 !important;
}

.navigation .divider {
  background-color: #e16d13 !important;
  height: 2px !important;
}

.divider._1vw {
  margin-top: 1vw;
  margin-bottom: 1vw;
}

.divider._2vw {
  height: 1px;
  margin: 2vw auto;
}

/* CONTAINERS & LAYOUT */
.container {
  padding: 2vw;
}

.content {
  overflow: clip;
}

.content._40vw {
  width: 40vw;
  min-width: 40vw;
}

.columns._2 {
  display: flex;
  gap: 1vw;
}

.row.horizontal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4vw;
}

.row.horizontal.footer {
  margin-top: 4vw;
}

.row.social-links {
  display: flex;
  gap: 1vw;
}

/* MARQUEE ANNOUNCEMENT */
.marquee-wrap {
  background-color: var(--orange);
  width: 100%;
  margin-top: 0vw;
  padding: 1vw;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 400%;
  animation: scroll-marquee 20s linear infinite;
}

.marquee-text {
  color: var(--dark-navy-text);
  text-transform: uppercase;
  flex: none;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  line-height: 100%;
  padding-right: 2em;
  white-space: nowrap;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* IMAGE GALLERY */
.image-rotator {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
}

.rotator-image-wrap {
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.rotator-image {
  object-fit: cover;
  width: auto;
  max-width: 100%;
  height: 100%;
  position: absolute;
}

.image-wrap {
  overflow: clip;
}

.image {
  width: 100%;
}

/* MENU / PRODUCT GRID */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2vw;
  overflow: visible;
  transform: translate(0);
}

.menu-card {
  transform-style: preserve-3d;
  border-radius: 1.3em;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: translate3d(0, 0, 1px);
}

.menu-content {
  background-color: var(--orange);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 1vw;
  gap: 1vw;
}

.menu-row {
  background-color: transparent;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  width: 100%;
  gap: 1vw;
}

.menu-titles {
  color: var(--azul);
  text-transform: uppercase;
  font-family: Impact, Haettenschweiler, 'Franklin Gothic Bold', Charcoal, sans-serif;
  font-size: 1.7rem;
  line-height: 100%;
}

.menu-details {
  color: var(--azul);
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  line-height: 100%;
  text-decoration: none;
}

.menu-image {
  width: 100%;
}

/* QUANTITY SELECTOR */
.quantity-selector {
  display: flex;
  gap: 0.2vw;
}

.quantity-box {
  border: 2px solid var(--azul);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s;
}

.quantity-box:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.minus,
.plus-horizontal {
  background-color: var(--azul);
  width: 18px;
  height: 3px;
}

.plus-vertical {
  background-color: var(--azul);
  width: 3px;
  height: 18px;
  position: absolute;
}

.quantity-number {
  color: var(--azul);
  text-transform: uppercase;
  font-family: Impact, Haettenschweiler, 'Franklin Gothic Bold', Charcoal, sans-serif;
  font-size: 1rem;
  line-height: 100%;
}

/* BUTTONS */
.button.add-to-cart {
  background-color: var(--white);
  color: var(--orange);
  text-align: center;
  text-transform: uppercase;
  flex: 0 auto;
  font-family: Impact, Haettenschweiler, 'Franklin Gothic Bold', Charcoal, sans-serif;
  font-size: 2rem;
  line-height: 87%;
  transition: background-color 0.2s ease;
  border: none;
  padding: 1rem 2rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.button.add-to-cart:hover {
  background-color: var(--light-orange);
  color: var(--orange);
}

/* FOOTER */
.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4vw;
  margin-bottom: 4vw;
}

.footer-text {
  color: var(--orange);
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  line-height: 120%;
  text-decoration: none;
}

.text-link {
  color: var(--orange);
  line-height: 120%;
  text-decoration: none;
  transition: color 0.2s;
}

.text-link:hover {
  color: var(--light-orange);
}

.facebook,
.instagram {
  width: 40px;
  color: var(--orange);
  transition: color 0.2s;
}

.facebook:hover,
.instagram:hover {
  color: var(--light-orange);
}

.rect {
  color: var(--orange);
}

.f {
  color: var(--azul);
}

/* LOGO */
.barrio-logo {
  color: var(--orange);
  margin-bottom: 2vw;
  display: block;
  overflow: clip;
}

.barrio-logo path {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.b, .a, .r-1, .r-2, .o {
  color: var(--orange);
}

.i {
  color: var(--orange);
}

/* RESPONSIVE - MOBILE */
@media screen and (max-width: 479px) {
  h1.centred.white, .h1.centred.white {
    font-size: 32px;
  }
  
  h1.white, .h1.white {
    text-align: center;
  }
  
  .paragraph.white {
    text-align: center;
  }
  
  .nav-link {
    font-size: 10px;
  }
  
  .nav-link.large {
    font-size: 16px;
  }
  
  .nav-text {
    display: none;
  }
  
  .container {
    width: 100%;
    margin: auto;
    padding: 2vw 2vw 3vw;
  }
  
  .content._40vw {
    width: 100%;
  }
  
  .columns._2 {
    flex-direction: column;
  }
  
  .divider._1vw,
  .divider._2vw {
    margin-top: 8vw;
    margin-bottom: 8vw;
  }
  
  .barrio-logo {
    margin-bottom: 3vw;
  }
  
  .marquee-wrap {
    margin-top: 8vw;
  }
  
  .image-rotator {
    grid-template-rows: repeat(6, auto);
    grid-template-columns: 1fr;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 8vw;
    width: 100%;
  }
  
  .menu-content {
    gap: 4vw;
    padding: 8vw;
  }
  
  .menu-row {
    gap: 4vw;
    flex-direction: column;
  }
  
  .button.add-to-cart {
    align-self: stretch;
    width: 100%;
  }
  
  .menu-details {
    display: none;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 4vw;
    margin-bottom: 8vw;
  }
  
  .row.horizontal.footer {
    justify-content: center;
    align-items: center;
  }
  
  .footer-text {
    display: none;
  }
}

/* RESPONSIVE - TABLET */
@media screen and (max-width: 991px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  h1.centred.white, .h1.centred.white {
    font-size: 48px;
  }
}

/* SHOPIFY OVERRIDES */
.shopify-section {
  padding: 0;
}

input[type="email"],
input[type="text"],
input[type="tel"],
textarea {
  background-color: var(--white);
  border: 2px solid var(--orange);
  color: var(--azul);
  font-family: 'DM Mono', monospace;
  padding: 0.75rem 1rem;
}

input[type="email"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: var(--light-orange);
  outline: none;
}

/* ACCESSIBILITY */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--light-orange);
  outline-offset: 2px;
}

/* Force navy background everywhere */
body,
#MainContent,
main {
  background-color: var(--azul) !important;
}

.shopify-section:not(.shopify-section-image-banner) {
  background-color: var(--azul) !important;
}
}
/* Fix navigation font */
.navigation-links a,
.navigation-links .nav-text {
  text-transform: uppercase !important;
  letter-spacing: 0.02em;
}

/* Make dividers more visible */
.navigation .divider {
  background-color: var(--orange) !important;
  width: 100% !important;
  height: 1px !important;
  margin: 1vw 0 !important;
}


/* Force navigation text uppercase and proper styling */
.navigation-links a,
.navigation-links .nav-text {
  text-transform: uppercase !important;
  font-family: 'DM Mono', monospace !important;
  letter-spacing: 0.05em !important;
}

.nav-link {
  font-size: 13px !important;
}

.nav-link.large {
  font-size: 28px !important;
}

/* MOBILE NAV */
.navigation-mobile {
  display: none;
}

@media screen and (max-width: 767px) {
  .navigation {
    display: none;
  }

  .navigation-mobile {
    display: block;
    background-color: var(--azul);
  }

  .navigation-mobile__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 4vw;
  }

  .navigation-mobile__toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
  }

  .navigation-mobile__bar-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--orange);
    transition: all 0.3s ease;
  }

  .navigation-mobile__drawer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

    .navigation-mobile__link {
    display: block;
    padding: 6px 3vw;
    color: var(--orange) !important;
    text-decoration: none;
    font-family: 'DM Mono', monospace;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .navigation-mobile__link:hover {
    color: var(--light-orange) !important;
  }

  .navigation-mobile__hours {
    padding: 12px 4vw;
    text-align: center;
    font-size: 11px;
    display: block !important;
  }
}