/** Shopify CDN: Minification failed

Line 54:19 Unexpected "*"

**/
body, .shopify-section, .content-for-layout { background-color: #0A0A0A !important; color: #888 !important; }
/* ═══════════════════════════════════════════
   MONITOR CITY — CUSTOM THEME CSS
   For Dawn Theme Override
   ═══════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════════ */
:root {
  --mc-black: #0A0A0A;
  --mc-off-black: #111111;
  --mc-dark-grey: #1A1A1A;
  --mc-mid-grey: #2A2A2A;
  --mc-light-grey: #888888;
  --mc-off-white: #E8E8E8;
  --mc-white: #F5F5F5;
  --mc-green: #1B6B1B;
  --mc-green-light: #2A8A2A;
  --mc-green-glow: rgba(27, 107, 27, 0.3);
  --mc-font-display: 'Outfit', sans-serif;
  --mc-font-mono: 'Space Mono', monospace;
  --mc-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ═══════════════════════════════════════════
   GLOBAL OVERRIDES
   ═══════════════════════════════════════════ */
body {
  font-family: var(--mc-font-display) !important;
  background-color: var(--mc-black) !important;
  color: var(--mc-light-grey) !important;
  -webkit-font-smoothing: antialiased;
}

/* Hide Dawn's default header and announcement bar */
.header-wrapper,
.announcement-bar {
  display: none !important;
}

/* Hide Dawn's default footer */
.footer,
footer.footer {
  display: none !important;
}

/* Override Dawn's section padding */
.section-template--*,
.shopify-section {
  background-color: var(--mc-black) !important;
}

/* Reset Dawn's default colors on text */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--mc-font-display) !important;
  color: var(--mc-white) !important;
}

p {
  font-family: var(--mc-font-display) !important;
  color: var(--mc-light-grey) !important;
}

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

/* ═══════════════════════════════════════════
   MC NAVIGATION
   ═══════════════════════════════════════════ */
.mc-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px clamp(24px, 4vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--mc-ease-out);
}

.mc-nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px clamp(24px, 4vw, 80px);
  border-bottom: 1px solid var(--mc-mid-grey);
}

.mc-nav-logo img {
  height: 36px;
  width: auto;
}

.mc-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mc-nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mc-light-grey);
  transition: color 0.3s;
  position: relative;
}

.mc-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--mc-green);
  transition: width 0.3s var(--mc-ease-out);
}

.mc-nav-links a:hover {
  color: var(--mc-white);
}

.mc-nav-links a:hover::after {
  width: 100%;
}

.mc-nav-cta {
  padding: 10px 28px !important;
  border: 1px solid var(--mc-green) !important;
  color: var(--mc-green-light) !important;
  font-size: 12px !important;
  transition: all 0.3s var(--mc-ease-out) !important;
}

.mc-nav-cta:hover {
  background: var(--mc-green) !important;
  color: var(--mc-white) !important;
}

.mc-nav-cta::after {
  display: none !important;
}

/* Mobile hamburger */
.mc-nav-hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mc-nav-hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--mc-white);
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════
   MC EYEBROW
   ═══════════════════════════════════════════ */
.mc-eyebrow {
  font-family: var(--mc-font-mono) !important;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mc-green-light);
  display: flex;
  align-items: center;
  gap: 16px;
}

.mc-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--mc-green);
}

.mc-eyebrow-center {
  justify-content: center;
}

.mc-eyebrow-center::before {
  display: none;
}

/* ═══════════════════════════════════════════
   MC BUTTONS
   ═══════════════════════════════════════════ */
.mc-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: var(--mc-green);
  color: var(--mc-white) !important;
  font-family: var(--mc-font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--mc-ease-out);
}

.mc-btn-primary:hover {
  background: var(--mc-green-light);
  box-shadow: 0 0 40px var(--mc-green-glow);
}

.mc-btn-ghost {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mc-light-grey) !important;
  transition: color 0.3s;
}

.mc-btn-ghost:hover {
  color: var(--mc-white) !important;
}

/* ═══════════════════════════════════════════
   MC SECTION UTILITIES
   ═══════════════════════════════════════════ */
.mc-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
}

.mc-section-pad {
  padding: clamp(80px, 10vw, 160px) 0;
}

.mc-section-dark {
  background: var(--mc-black);
}

.mc-section-darker {
  background: var(--mc-off-black);
}

.mc-section-line {
  position: relative;
}

.mc-section-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--mc-mid-grey), transparent);
}

/* ═══════════════════════════════════════════
   MC SCROLL REVEAL
   ═══════════════════════════════════════════ */
.mc-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--mc-ease-out), transform 0.8s var(--mc-ease-out);
}

.mc-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.mc-reveal-delay-1 { transition-delay: 0.1s; }
.mc-reveal-delay-2 { transition-delay: 0.2s; }
.mc-reveal-delay-3 { transition-delay: 0.3s; }
.mc-reveal-delay-4 { transition-delay: 0.4s; }

@keyframes mc-fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mc-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ═══════════════════════════════════════════
   MC FOOTER
   ═══════════════════════════════════════════ */
.mc-footer {
  border-top: 1px solid var(--mc-mid-grey);
  padding: 80px 0 40px;
  background: var(--mc-black);
}

.mc-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.mc-footer-brand p {
  font-size: 14px;
  color: var(--mc-light-grey);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 300px;
}

.mc-footer-col h4 {
  font-family: var(--mc-font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mc-green-light);
  margin-bottom: 24px;
}

.mc-footer-col a {
  display: block;
  font-size: 14px;
  color: var(--mc-light-grey);
  margin-bottom: 12px;
  transition: color 0.3s;
  font-weight: 300;
}

.mc-footer-col a:hover {
  color: var(--mc-white);
}

.mc-footer-bottom {
  border-top: 1px solid var(--mc-mid-grey);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mc-footer-copy {
  font-family: var(--mc-font-mono);
  font-size: 11px;
  color: #555;
  letter-spacing: 1px;
}

.mc-footer-social {
  display: flex;
  gap: 12px;
}

.mc-footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--mc-mid-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}

.mc-footer-social a:hover {
  border-color: var(--mc-green);
}

.mc-footer-social svg {
  width: 16px;
  height: 16px;
  fill: var(--mc-light-grey);
}

/* ═══════════════════════════════════════════
   MC FORMS (shared across contact, product, dvox)
   ═══════════════════════════════════════════ */
.mc-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.mc-form-group label {
  font-family: var(--mc-font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mc-light-grey);
  margin-bottom: 8px;
}

.mc-form-group input,
.mc-form-group select,
.mc-form-group textarea {
  background: var(--mc-off-black);
  border: 1px solid var(--mc-mid-grey);
  color: var(--mc-off-white);
  font-family: var(--mc-font-display);
  font-size: 15px;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  border-radius: 0;
}

.mc-form-group input::placeholder,
.mc-form-group textarea::placeholder {
  color: #555;
}

.mc-form-group input:focus,
.mc-form-group select:focus,
.mc-form-group textarea:focus {
  border-color: var(--mc-green);
}

.mc-form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.mc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .mc-nav-links {
    display: none;
  }

  .mc-nav-hamburger {
    display: flex;
  }

  .mc-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .mc-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .mc-footer-grid {
    grid-template-columns: 1fr;
  }
}
/* Collection & Product Page Overrides */
.collection-banner,
.template-collection,
.collection-list,
.product-grid,
[class*="collection"],
[class*="product"] {
  background-color: var(--mc-black) !important;
  color: var(--mc-light-grey) !important;
}

.product-card-wrapper,
.card-wrapper,
.card {
  background-color: var(--mc-dark-grey) !important;
}

.card__heading a,
.card__heading,
.price-item,
.price .money {
  color: var(--mc-white) !important;
}

.collection-hero__title,
.collection-hero__description {
  color: var(--mc-white) !important;
}

.template-collection .page-width,
.template-product .page-width {
  background-color: transparent !important;
}

/* Product page */
.product__title,
.product__text,
.product__description {
  color: var(--mc-white) !important;
}

.shopify-section {
  background-color: var(--mc-black) !important;
}

.rich-text,
.rich-text__wrapper {
  background-color: var(--mc-black) !important;
  color: var(--mc-light-grey) !important;
}
/* ============================================
   COLLECTION PAGE - ENHANCED STYLING
   ============================================ */

/* Collection banner/hero */
.collection-hero {
  background-color: var(--mc-black) !important;
  padding: 60px 0 40px !important;
}

.collection-hero__title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
}

/* Filter & Sort bar */
.facets-container,
.active-facets,
.facets__form,
.collection-filters {
  background-color: var(--mc-black) !important;
  border-color: rgba(255,255,255,0.1) !important;
}

.facets__disclosure label,
.facets__selected,
.facets__summary span,
.collection-product-count,
.facets-container * {
  color: var(--mc-white) !important;
}

/* Sort dropdown */
.facet-filters__sort select,
.facet-filters__field select {
  background-color: #1a1a1a !important;
  color: var(--mc-white) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 4px !important;
}

/* Product grid */
.product-grid {
  gap: 20px !important;
}

/* Product cards */
.product-card-wrapper .card,
.card-wrapper .card {
  background-color: #1a1a1a !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  transition: border-color 0.3s ease, transform 0.3s ease !important;
}

.product-card-wrapper .card:hover,
.card-wrapper .card:hover {
  border-color: #1B6B1B !important;
  transform: translateY(-4px) !important;
}

/* Product card images */
.card__media,
.card__inner .card__media {
  background-color: #111 !important;
  border-radius: 8px 8px 0 0 !important;
}

.card__media img {
  mix-blend-mode: normal !important;
}

/* Product card text */
.card__content,
.card__information {
  padding: 16px !important;
}

.card__heading,
.card__heading a {
  color: var(--mc-white) !important;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
}

.price-item,
.price .money,
.price-item--regular {
  color: #1B6B1B !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
}

/* Badge styling (e.g., Sale, Sold Out) */
.badge {
  background-color: #1B6B1B !important;
  color: white !important;
  border-radius: 4px !important;
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

/* "Photos Coming Soon" placeholder */
.placeholder-svg {
  background-color: #1a1a1a !important;
  fill: rgba(255,255,255,0.3) !important;
}

/* Pagination */
.pagination__list {
  gap: 8px !important;
}

.pagination__item a,
.pagination__item span {
  color: var(--mc-white) !important;
  background-color: #1a1a1a !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 4px !important;
}

.pagination__item a:hover,
.pagination__item--current span {
  background-color: #1B6B1B !important;
  border-color: #1B6B1B !important;
}
/* ============================================
   PRODUCT PAGE - ENHANCED STYLING
   ============================================ */

/* Product page spacing */
.product {
  padding-top: 20px !important;
}

/* Product title */
.product__title h1,
.product__title {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  color: #F5F5F5 !important;
  letter-spacing: -0.5px !important;
}

/* Product price */
.product__info-wrapper .price-item,
.product__info-wrapper .price .money {
  color: #1B6B1B !important;
  font-weight: 700 !important;
  font-size: 1.3rem !important;
}

/* Product description */
.product__description,
.product__description p {
  color: #888888 !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
}

/* Enquiry form heading */
.contact-form-heading,
h2:has(+ .contact-form),
.shopify-section .rte h2,
[id*="ContactForm"] h2,
.product-enquiry-heading {
  font-family: 'Outfit', sans-serif !important;
  color: #2A8A2A !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  margin-bottom: 24px !important;
}

/* Form inputs - dark styling */
.contact-form input,
.contact-form textarea,
.contact-form select,
.form__input,
.field__input,
textarea.text-area,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  background-color: #1A1A1A !important;
  color: #E8E8E8 !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 6px !important;
  padding: 14px 16px !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 14px !important;
  transition: border-color 0.3s ease !important;
}

.contact-form input:focus,
.contact-form textarea:focus,
.field__input:focus,
textarea:focus,
input:focus {
  border-color: #1B6B1B !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(27, 107, 27, 0.2) !important;
}

/* Form labels */
.field__label,
.contact-form label,
.form__label {
  color: #888888 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 13px !important;
}

/* Placeholder text */
.contact-form input::placeholder,
.contact-form textarea::placeholder,
.field__input::placeholder {
  color: #555555 !important;
}

/* Send / Submit button */
.contact-form .button,
.contact-form button[type="submit"],
button.button--primary,
.form__submit {
  background-color: #1B6B1B !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 14px 40px !important;
  font-family: 'Space Mono', monospace !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
}

.contact-form .button:hover,
.contact-form button[type="submit"]:hover,
button.button--primary:hover {
  background-color: #2A8A2A !important;
}

/* Product thumbnails */
.product__media-list .product__media-item {
  border: 2px solid transparent !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  transition: border-color 0.3s !important;
}

.product__media-list .product__media-item.is-active,
.product__media-list .product__media-item:hover {
  border-color: #1B6B1B !important;
}

/* Share button / misc links */
.product__info-wrapper .share-button,
.product__info-wrapper a {
  color: #888888 !important;
}

.product__info-wrapper a:hover {
  color: #2A8A2A !important;
}
/* Product page - remove ALL white backgrounds */
.product,
.product__info-wrapper,
.product__media-wrapper,
.product__info-container,
.product-section,
.shopify-section--template--product,
.template-product .main-product,
.main-product,
.product__media-list,
.product__column-sticky,
.gradient,
.product .gradient {
  background-color: var(--mc-black, #0A0A0A) !important;
  background: #0A0A0A !important;
}

/* Product media/image container */
.product__media,
.product__media-item,
.media,
.media--transparent {
  background-color: #111111 !important;
}

/* Remove any white section backgrounds on product page */
.shopify-section.section .page-width,
.template-product .page-width,
.product .page-width {
  background-color: transparent !important;
}

/* Share button area */
.product__info-wrapper .share-button__fallback,
.share-button {
  background-color: transparent !important;
}

/* Send / Submit button - green styling */
.button,
button[type="submit"],
.form__submit,
input[type="submit"] {
  background-color: #1B6B1B !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 14px 40px !important;
  font-family: 'Space Mono', monospace !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
}

.button:hover,
button[type="submit"]:hover,
.form__submit:hover,
input[type="submit"]:hover {
  background-color: #2A8A2A !important;
}
/* Product page - more top spacing */
.section-template--product {
  padding-top: 40px !important;
}
/* Force product page top spacing */
.product__media-wrapper,
.product__info-wrapper {
  margin-top: 50px !important;
}
/* Google Map styling */
.mc-contact-map {
  width: 100%;
  margin-top: 40px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.mc-contact-map iframe {
  width: 100%;
  height: 300px;
  border: none !important;
  filter: grayscale(1) invert(1) contrast(0.9) brightness(0.6) !important;
}
/* ============================================
   MOBILE MENU
   ============================================ */
.mc-nav-hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 8px;
}

.mc-nav-hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--mc-white, #F5F5F5);
  transition: all 0.3s ease;
  display: block;
}

@media (max-width: 900px) {
  .mc-nav-hamburger {
    display: flex !important;
  }

  .mc-nav .mc-nav-links {
    display: none !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 40px 40px;
    gap: 24px;
    border-left: 1px solid #2A2A2A;
    z-index: 1000;
  }

  .mc-nav.menu-open .mc-nav-links {
    display: flex !important;
  }

  .mc-nav .mc-nav-links a {
    font-size: 15px !important;
    letter-spacing: 1px !important;
  }

  .mc-nav .mc-nav-cta {
    margin-top: 16px;
  }

  .mc-nav.menu-open .mc-nav-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .mc-nav.menu-open .mc-nav-hamburger span:nth-child(2) {
    opacity: 0;
  }

  .mc-nav.menu-open .mc-nav-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
}