/** Shopify CDN: Minification failed

Line 25:13 Expected identifier but found whitespace
Line 25:15 Unexpected "{"
Line 25:24 Expected ":"
Line 25:49 Expected ":"

**/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

.b2b-contact *, .b2b-contact *::before, .b2b-contact *::after { box-sizing: border-box; }

.b2b-contact {
  /* --red:        #C8102E; */
  --red:        #d63a39;
  --white:      #FFFFFF;
  --off-white:  #FAF9F7;
  --border:     #E2E0DB;
  --text-dark:  #1A1A1A;
  --text-muted: #6B6B6B;
  --font-serif: 'Playfair Display', Georgia, serif;

  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: {{ section.settings.min_height }}px;
  width: 100%;
}

/* ══ LEFT PANEL ══ */
.b2b-left {
    background: var(--red);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.b2b-left * { color: #fff }

.b2b-left::before,
.b2b-left::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.b2b-left::before {
  width: 520px; height: 520px;
  border: 1px solid rgba(255,255,255,0.15);
  top: -180px; left: -140px;

}
.b2b-left::after {
  width: 280px; height: 280px;
  border: 1px solid rgba(255,255,255,0.1);
  bottom: 60px; right: -80px;
}

.b2b-left__inner {
    position: relative;
  padding: 72px 64px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.b2b-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 1.3rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  width: fit-content;
  margin-bottom: 2.5rem;
}
.b2b-tag__dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: b2b-pulse 2s ease-in-out infinite;
}
@keyframes b2b-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(0.65); }
}

/* Heading */
.b2b-heading {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.05;
  margin: 0 0 36px;
}
.b2b-heading em {
  opacity: 0.6;
}

/* Call card */
.b2b-call-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 2.5rem 36px 2rem;
  transition: background 0.25s;
}
.b2b-call-card:hover { background: rgba(255,255,255,0.16); }

.b2b-icon-ring {
  width: 60px; height: 60px;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}
.b2b-icon-ring svg { width: 26px; height: 26px; }

.b2b-call-label {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  opacity: 0.8;
  margin: 0;
}
.b2b-call-prompt {
    opacity: 0.75;
  line-height: 1.5;
  margin: 0 0 12px;
}
.b2b-phone-number {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 6px;
  transition: opacity 0.2s;
}
.b2b-phone-number:hover { opacity: 0.8; }

.b2b-call-hours {
    opacity: 0.75;
}

/* Availability */
.b2b-availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}
.b2b-availability__dot {
  width: 8px; height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(74,222,128,0.22);
}
.b2b-availability__text {
    opacity: 0.9;
}

/* ══ RIGHT PANEL ══ */
.b2b-right {
  background: var(--white);
  display: flex;
  align-items: center;
}

.b2b-right__inner {
  padding: 72px 64px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.b2b-right__eyebrow {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
}

.b2b-right__title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.2;
  margin: 0 0 36px;
}

.b2b-wa-card {
    position: relative;
  display: block;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 36px 1.75rem;
  text-decoration: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.b2b-wa-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,16,46,0.04) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.b2b-wa-card:hover {
  border-color: var(--red);
  box-shadow: 0 10px 36px rgba(200,16,46,0.1);
}
.b2b-wa-card:hover::before { opacity: 1; }

.b2b-wa-icon-ring {
  width: 6.5rem; height: 6.5rem;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: border-color 0.25s, color 0.25s;
}
.b2b-wa-card:hover .b2b-wa-icon-ring { border-color: var(--red); color: var(--red); }
.b2b-wa-icon-ring svg { width: 30px; height: 30px; }

.b2b-wa-name {
  font-weight: 500;
  margin: 0 0 10px;
}
.b2b-wa-desc {
  margin: 0 0 24px;
}

/* CTA arrow */
.b2b-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--red);
}
.b2b-cta__line {
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--red);
  transition: width 0.25s;
}
.b2b-wa-card:hover .b2b-cta__line { width: 56px; }

/* Divider */
.b2b-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0;
}
.b2b-divider::before,
.b2b-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.b2b-divider span {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.b2b-email-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.b2b-email-row:hover {
  border-color: var(--red);
  background: rgba(200,16,46,0.02);
}
.b2b-email-row__left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.b2b-email-row__left svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.b2b-email-row:hover .b2b-email-row__left svg { color: var(--red); }

.b2b-email-row__name {
  font-weight: 500;
  margin: 0;
}
.b2b-email-row__addr {
  margin: 0;
  font-size: 1.8rem;
}

.b2b-email-row__arrow {
  font-size: 2rem;
  color: var(--text-muted);
  transition: transform 0.2s, color 0.2s;
}
.b2b-email-row:hover .b2b-email-row__arrow {
  transform: translateX(5px);
  color: var(--red);
}

.b2b-right__footer {
  margin-top: 28px;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

/* ══ RESPONSIVE ══ */
@media screen and (max-width: 900px) {
  .b2b-contact { grid-template-columns: 1fr; }
  .b2b-left::after { display: none; }
  .b2b-left__inner,
  .b2b-right__inner { padding: 52px 36px; }
  .b2b-phone-number { font-size: 28px; }
}

@media screen and (max-width: 480px) {
  .b2b-left__inner,
  .b2b-right__inner { padding: 40px 24px; }
  .b2b-call-card,
  .b2b-wa-card { padding: 24px 22px; }
  .b2b-heading { font-size: 36px; }
}