/** Shopify CDN: Minification failed

Line 21:18 Unexpected "{"
Line 21:27 Expected ":"
Line 26:18 Unexpected "{"
Line 26:27 Expected ":"
Line 36:18 Unexpected "{"
Line 36:27 Expected ":"
Line 44:18 Unexpected "{"
Line 44:27 Expected ":"
Line 55:18 Unexpected "{"
Line 55:27 Expected ":"
... and 72 more hidden warnings

**/
/* ================================================================
   Contact Form With Text — Pixel-Perfect Custom Styles
   Scoped to: #shopify-section-{{ section.id }}
   ================================================================ */

#shopify-section-{{ section.id }} .cwt-container {
  max-width: 1440px;
  margin: 0 auto;
}

#shopify-section-{{ section.id }} .cwt-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  /* gap: var(--cwt-col-gap, 100px); */
  align-items: center;
  justify-items: center;
}

/* ── LEFT COLUMN ─────────────────────────────────────────────── */

#shopify-section-{{ section.id }} .cwt-main-heading {
  font-size: clamp(1.75rem, 3vw, 48px);
  font-weight: 400;
  color: #1C1C1C;
  margin: 0 0 8px;
  line-height: 1.15;
}

#shopify-section-{{ section.id }} .cwt-sub-heading {
  font-size: 20px;
  font-weight: 400;
  color: #5A6A76;
  line-height: 1.55;
  opacity: 0.80;
  margin: 0 0 40px;
}

/* ── FORM CARD ───────────────────────────────────────────────── */

#shopify-section-{{ section.id }} .cwt-form-card {
  background: var(--cwt-form-card-bg, #ede8e1);
  padding: 26px 26px 30px;
  max-width: 85%;
}

#shopify-section-{{ section.id }} .cwt-form-card-label {
  display: block;
  color: var(--cwt-accent, #B8916A);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

/* ── FORM LAYOUT ─────────────────────────────────────────────── */

#shopify-section-{{ section.id }} .cwt-form {
  display: flex;
  flex-direction: column;
}

#shopify-section-{{ section.id }} .cwt-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

#shopify-section-{{ section.id }} .cwt-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

#shopify-section-{{ section.id }} .cwt-name-row .cwt-field {
  margin-bottom: 0;
}

#shopify-section-{{ section.id }} .cwt-label {
  font-size: 10px;
  color: #6B6B6B;
  letter-spacing: 0.09em;
  font-weight: 500;
  opacity: 0.55;
}

/* ── INPUTS ──────────────────────────────────────────────────── */

#shopify-section-{{ section.id }} .cwt-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: #FAFAFA;
  border: 1px solid #fff;
  padding: 10px 12px;
  font-size: 0.875rem;
  font-family: inherit;
  color: inherit;
  transition: border-color 0.18s ease;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

#shopify-section-{{ section.id }} .cwt-input:focus {
  border-color: var(--cwt-accent, #b07a5a);
}

#shopify-section-{{ section.id }} .cwt-input::placeholder {
  opacity: 0.4;
  font-size: 0.82rem;
}

/* ── SELECT DROPDOWN ─────────────────────────────────────────── */

#shopify-section-{{ section.id }} .cwt-select-wrap {
  position: relative;
}

#shopify-section-{{ section.id }} .cwt-select {
  padding-right: 36px;
  cursor: pointer;
}

#shopify-section-{{ section.id }} .cwt-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.45;
  display: flex;
  align-items: center;
}

/* ── TEXTAREA ────────────────────────────────────────────────── */

#shopify-section-{{ section.id }} .cwt-textarea {
  min-height: 115px;
  resize: vertical;
  line-height: 1.55;
}

/* ── SUBMIT BUTTON ───────────────────────────────────────────── */

#shopify-section-{{ section.id }} .cwt-submit {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 13px 20px;
  background: var(--cwt-btn-bg, #B8916A);
  color: var(--cwt-btn-color, #ffffff);
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  letter-spacing: 0.025em;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

/* #shopify-section-{{ section.id }} .cwt-submit:hover {
  opacity: 0.82;
} */
#shopify-section-{{ section.id }} .cwt-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.50s ease, box-shadow 0.50s ease;
  will-change: transform;
}

/* lift effect */
#shopify-section-{{ section.id }} .cwt-submit:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* shine layer */
#shopify-section-{{ section.id }} .cwt-submit::before {
  content: "";
  position: absolute;
  top: 0;
  right: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transition: all 0.8s ease;
}

#shopify-section-{{ section.id }} .cwt-submit:hover::before {
  right: 120%;
}

/* ensure text stays above */
#shopify-section-{{ section.id }} .cwt-submit > * {
  position: relative;
  z-index: 2;
}

/* ── FORM RESPONSES ──────────────────────────────────────────── */

#shopify-section-{{ section.id }} .cwt-response {
  margin-top: 14px;
  padding: 11px 14px;
  border-radius: 4px;
  font-size: 0.85rem;
  line-height: 1.5;
}

#shopify-section-{{ section.id }} .cwt-response--success {
  background: #d4edda;
  color: #155724;
}

#shopify-section-{{ section.id }} .cwt-response--error {
  background: #f8d7da;
  color: #721c24;
}

/* ── RIGHT COLUMN ────────────────────────────────────────────── */

#shopify-section-{{ section.id }} .cwt-right {
  margin-top: 150px;
  width: 100%;
}

#shopify-section-{{ section.id }} .cwt-reach-heading {
  font-size: clamp(1.1rem, 1.8vw, 30px);
  font-weight: 400;
  color: #1C1C1C;
  margin: 0 0 28px;
  line-height: 1.3;
}

#shopify-section-{{ section.id }} .cwt-methods {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

#shopify-section-{{ section.id }} .cwt-method {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/* ── METHOD ICON ─────────────────────────────────────────────── */

#shopify-section-{{ section.id }} .cwt-method-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: inherit;
}

#shopify-section-{{ section.id }} .cwt-method-icon svg {
  opacity: 0.70;
}

/* Custom uploaded icon image */
#shopify-section-{{ section.id }} .cwt-method-icon-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
  opacity: 0.75;
}

/* ── METHOD BODY ─────────────────────────────────────────────── */

#shopify-section-{{ section.id }} .cwt-method-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 2px;
}

#shopify-section-{{ section.id }} .cwt-method-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #1C1C1C;
  line-height: 1.3;
}

#shopify-section-{{ section.id }} .cwt-method-desc {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #6B6B6B;
  opacity: 0.70;
  line-height: 1.55;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet: stack columns */
@media screen and (max-width: 1023px) {
  #shopify-section-{{ section.id }} .cwt-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Mobile: stack name row */
@media screen and (max-width: 639px) {
  #shopify-section-{{ section.id }} .cwt-name-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #shopify-section-{{ section.id }} .cwt-form-card {
    padding: 20px 18px 24px;
  }

  #shopify-section-{{ section.id }} .cwt-main-heading {
    font-size: 1.6rem;
  }
}
