/** Shopify CDN: Minification failed

Line 19:10 Unexpected "{"
Line 19:19 Expected ":"
Line 20:14 Expected identifier but found whitespace
Line 20:16 Unexpected "{"
Line 20:25 Expected ":"
Line 20:76 Expected ":"
Line 21:17 Expected identifier but found whitespace
Line 21:19 Unexpected "{"
Line 21:28 Expected ":"
Line 21:82 Expected ":"
... and 10 more hidden warnings

**/


/* CSS from section stylesheet tags */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}

@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}

.contact-section-background {
  background-image: url('/cdn/shop/files/360_F_654770151_JInsrceyoYzjXN8qagsyqvwrM0RnKy9i.jpg?v=1749841394');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-form-box {
  /* background-color: rgba(255, 255, 255, 0.05); */
  padding: 5rem;
  border-radius: 16px;
  /* box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 4px 20px rgba(0, 0, 0, 0.25); */
  /* backdrop-filter: blur(8px); */
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  max-width: 500px;
  margin: 0 auto;
}

.field__input,
.text-area {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #AE0002;
  padding: 1.2rem 1rem 0.6rem;
  font-size: 1rem;
  width: 100%;
}

.field__input::placeholder,
.text-area::placeholder {
  color: #AE0002;
  font-size: 1.1rem;
  opacity: 1;
}

.field {
  position: relative;
  margin-bottom: 2rem;
}

.contact__button {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.field__label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #AE0002;
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.2s ease;
}

.field__input:focus + .field__label,
.field__input:not(:placeholder-shown) + .field__label,
.text-area:focus + .field__label,
.text-area:not(:placeholder-shown) + .field__label {
  top: -0.6rem;
  left: 0.9rem;
  font-size: 0.8rem;
  background: rgba(0,0,0,0.3);
  padding: 0 0.4rem;
  border-radius: 4px;
}

.button {
  background-color: #EDE8D0; /* Light background */
  color: #AE0002; /* Deep red text */
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  font-weight: 600;
}

.button:hover {
  background-color: #e0d9bd; /* Slightly darker on hover */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* CSS from snippet stylesheet tags */
/* === Base Setup === */
.header-menu-hover {
  position: relative;
}

.menu-item-wrapper {
  position: relative;
}

.has-submenu {
  cursor: pointer;
}

/* === Submenu Common Styles === */
.header__submenu,
.header__submenu.level-2 {
  display: none;
  position: absolute;
  z-index: 1000;
  min-width: 220px;
  background-color: #EDE8D0 !important; /* ✅ Solid color */
  color: #AE0002;
  font-size: 14px;
  padding: 0.5rem 0;
  list-style: none;
  isolation: isolate;
  border: 1px solid #ccc;
  opacity: 1 !important; /* ✅ Prevent inherited transparency */
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  mix-blend-mode: normal !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* === First-level submenu positioning === */
.header__submenu {
  top: 100%;
  left: 0;
}

/* === Second-level submenu positioning (opens left) === */
.header__submenu.level-2 {
  top: 0;
  left: auto;
  right: 100%;
  z-index: 1001;
}

/* === Show submenu on hover === */
.header-menu-hover:hover > .header__submenu,
.header__submenu li:hover > .header__submenu.level-2 {
  display: block;
}

/* === Submenu link styles === */
.header__submenu li {
  list-style: none;
}

.header__submenu a {
  color: #AE0002;
  text-decoration: none;
  display: block;
  padding: 8px 16px;
  white-space: nowrap;
}

.header__submenu a:hover {
  background-color: #EDE8D0;
  color: #880002;
}

/* === Submenu with image and caret === */
.submenu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  text-decoration: none;
  color: #AE0002;
  white-space: nowrap;
}

.submenu-link:hover,
.submenu-link.active {
  background: #EDE8D0;
  color: #880002;
}

.submenu-link img {
  margin-left: 8px;
  border-radius: 4px;
  max-width: 60px;
  height: auto;
}

/* === Caret SVG size === */
.header__menu-item svg,
.submenu-link svg {
  width: 12px;
  height: 12px;
  margin-left: 6px;
  vertical-align: middle;
}

/* === Optional Fixes for Inherited Transparency === */
.header,
.site-header {
  opacity: 1 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}