/** Shopify CDN: Minification failed

Line 507:4 Expected ":"
Line 513:4 Expected ":"
Line 517:4 Expected ":"
Line 521:4 Expected ":"
Line 525:4 Expected ":"
Line 530:4 Expected ":"
Line 614:4 Expected ":"
Line 620:4 Expected ":"
Line 624:4 Expected ":"
Line 628:4 Expected ":"
... and 2 more hidden warnings

**/
/* =========================================================
   PROJECT ATLAS 2.0 — CORE FOUNDATION v1.0
   Stamp Design 4U Premium Product System
========================================================= */

/* =========================
   BRAND THEMES
========================= */

.atlas-brand-trodat {
  --atlas-primary: #d72638;
  --atlas-primary-dark: #991b1b;
  --atlas-primary-soft: #fee2e2;
  --atlas-ink: #111827;
  --atlas-muted: #4b5563;
  --atlas-soft: #f8fafc;
  --atlas-card: #ffffff;
  --atlas-border: #e5e7eb;
  --atlas-gold: #fbbf24;
  --atlas-success: #16a34a;
}

.atlas-brand-colop {
  --atlas-primary: #0057b8;
  --atlas-primary-dark: #003f88;
  --atlas-primary-soft: #dbeafe;
  --atlas-ink: #0f172a;
  --atlas-muted: #475569;
  --atlas-soft: #f8fafc;
  --atlas-card: #ffffff;
  --atlas-border: #e2e8f0;
  --atlas-gold: #fbbf24;
  --atlas-success: #16a34a;
}

.atlas-brand-shiny {
  --atlas-primary: #f97316;
  --atlas-primary-dark: #c2410c;
  --atlas-primary-soft: #ffedd5;
  --atlas-ink: #0f172a;
  --atlas-muted: #475569;
  --atlas-soft: #f8fafc;
  --atlas-card: #ffffff;
  --atlas-border: #e2e8f0;
  --atlas-gold: #fbbf24;
  --atlas-success: #16a34a;
}

.atlas-brand-sd4u {
  --atlas-primary: #7c3aed;
  --atlas-primary-dark: #4c1d95;
  --atlas-primary-soft: #ede9fe;
  --atlas-ink: #111827;
  --atlas-muted: #4b5563;
  --atlas-soft: #faf5ff;
  --atlas-card: #ffffff;
  --atlas-border: #ddd6fe;
  --atlas-gold: #fbbf24;
  --atlas-success: #16a34a;
}

.atlas-brand-traxx {
  --atlas-primary: #2563eb;
  --atlas-primary-dark: #1e3a8a;
  --atlas-primary-soft: #dbeafe;
  --atlas-ink: #111827;
  --atlas-muted: #4b5563;
  --atlas-soft: #f8fafc;
  --atlas-card: #ffffff;
  --atlas-border: #e5e7eb;
  --atlas-gold: #fbbf24;
  --atlas-success: #16a34a;
}

/* =========================
   ATLAS BASE
========================= */

.atlas,
.atlas * {
  box-sizing: border-box;
}

.atlas {
  font-family: inherit;
  color: var(--atlas-ink);
}

.atlas-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 12px 18px;
}

.atlas-shell {
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--atlas-primary) 10%, transparent), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, var(--atlas-soft) 100%);
  border: 1px solid var(--atlas-border);
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}

.atlas-shell-dark {
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--atlas-primary) 28%, transparent), transparent 35%),
    linear-gradient(135deg, #111827, #1f2937);
  color: #ffffff;
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .18);
}

/* =========================
   TYPOGRAPHY
========================= */

.atlas-kicker {
  display: inline-block;
  background: var(--atlas-primary-soft);
  color: var(--atlas-primary-dark);
  border: 1px solid color-mix(in srgb, var(--atlas-primary) 25%, #ffffff);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.atlas-title {
  color: var(--atlas-ink) !important;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 950;
  margin: 0 0 8px;
}

.atlas-title--hero {
  font-size: 38px;
  line-height: 1.05;
}

.atlas-title--white {
  color: #ffffff !important;
}

.atlas-text {
  color: var(--atlas-muted);
  font-size: 15px;
  line-height: 1.45;
  margin: 0;
}

.atlas-text--white {
  color: rgba(255, 255, 255, .88);
}

/* =========================
   BUTTONS
========================= */

.atlas-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: linear-gradient(135deg, var(--atlas-primary), var(--atlas-primary-dark));
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
  padding: 14px 22px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--atlas-primary) 28%, transparent);
  transition: transform .18s ease, box-shadow .18s ease;
}

.atlas-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--atlas-primary) 34%, transparent);
}

.atlas-btn--full {
  width: 100%;
}

.atlas-btn--dark {
  background: #111827;
}

/* =========================
   CARDS
========================= */

.atlas-card {
  background: var(--atlas-card);
  border: 1px solid var(--atlas-border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .06);
}

.atlas-card-title {
  display: block;
  color: var(--atlas-ink);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.15;
  margin-bottom: 5px;
}

.atlas-card-text {
  display: block;
  color: var(--atlas-muted);
  font-size: 12.5px;
  line-height: 1.35;
}

/* =========================
   PILLS / BADGES
========================= */

.atlas-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border: 1px solid var(--atlas-border);
  color: var(--atlas-ink);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 850;
}

.atlas-pill--brand {
  background: var(--atlas-primary-soft);
  color: var(--atlas-primary-dark);
  border-color: color-mix(in srgb, var(--atlas-primary) 25%, #ffffff);
}

/* =========================
   ICONS
========================= */

.atlas-icon {
  width: 30px;
  height: 30px;
  background: var(--atlas-primary);
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  font-size: 13px;
  flex: 0 0 30px;
}

.atlas-icon--light {
  background: var(--atlas-primary-soft);
  color: var(--atlas-primary-dark);
}

/* =========================
   GRIDS
========================= */

.atlas-grid-2,
.atlas-grid-3,
.atlas-grid-4,
.atlas-grid-5,
.atlas-grid-6 {
  display: grid;
  gap: 12px;
}

.atlas-grid-2 { grid-template-columns: repeat(2, 1fr); }
.atlas-grid-3 { grid-template-columns: repeat(3, 1fr); }
.atlas-grid-4 { grid-template-columns: repeat(4, 1fr); }
.atlas-grid-5 { grid-template-columns: repeat(5, 1fr); }
.atlas-grid-6 { grid-template-columns: repeat(6, 1fr); }

/* =========================
   MOBILE STICKY CTA
========================= */

.atlas-mobile-sticky {
  display: none;
}

/* =========================
   MOBILE
========================= */

@media only screen and (max-width: 749px) {
  .atlas-section {
    padding: 8px 10px 14px;
  }

  .atlas-shell,
  .atlas-shell-dark {
    padding: 14px;
    border-radius: 20px;
  }

  .atlas-kicker {
    font-size: 10px;
    padding: 7px 11px;
    margin-bottom: 8px;
  }

  .atlas-title {
    font-size: 22px;
    line-height: 1.12;
  }

  .atlas-title--hero {
    font-size: 28px;
    line-height: 1.06;
  }

  .atlas-text {
    font-size: 13.5px;
    line-height: 1.4;
  }

  .atlas-grid-2,
  .atlas-grid-3,
  .atlas-grid-4,
  .atlas-grid-5,
  .atlas-grid-6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .atlas-card {
    padding: 12px;
    border-radius: 15px;
  }

  .atlas-card-title {
    font-size: 13px;
  }

  .atlas-card-text {
    font-size: 11px;
    line-height: 1.3;
  }

  .atlas-btn {
    width: 100%;
    padding: 14px 18px;
  }

  .atlas-mobile-sticky {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(17, 24, 39, .96);
    padding: 10px 12px;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, .24);
  }

  .atlas-mobile-sticky button {
    width: 100%;
    border: none;
    background: linear-gradient(135deg, var(--atlas-primary), var(--atlas-primary-dark));
    color: #ffffff;
    font-size: 16px;
    font-weight: 950;
    padding: 14px 18px;
    border-radius: 999px;
  }
}

/* =========================
   TABLET
========================= */

@media only screen and (min-width: 750px) and (max-width: 1100px) {
  .atlas-grid-4,
  .atlas-grid-5,
  .atlas-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .atlas-title--hero {
    font-size: 34px;
  }
}
/* =========================
   ATLAS PRODUCT BRAND STRIP
========================= */

.atlas-product-brand-strip {
    padding: 18px 22px;
    border-radius: 18px;
    border: 1px solid #ececec;
    box-shadow: 0 10px 28px rgba(17,24,39,.07);
}
/* =========================
   ATLAS MANUFACTURER CARD
========================= */

.atlas-manufacturer-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(215,38,56,.08), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 18px 20px;
  margin: 0 0 18px;
  box-shadow: 0 12px 32px rgba(15,23,42,.09);
}

.atlas-manufacturer-card__logo-wrap {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.atlas-manufacturer-card__logo {
  width: 130px;
  height: auto;
  display: block;
}

.atlas-manufacturer-card__eyebrow {
  display: inline-block;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.atlas-manufacturer-card__content strong {
  display: block;
  color: #111827;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.1;
  margin-bottom: 10px;
}

.atlas-manufacturer-card__points {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.atlas-manufacturer-card__points span {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #374151;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

@media only screen and (max-width: 749px) {
  .atlas-manufacturer-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    margin-bottom: 14px;
  }

  .atlas-manufacturer-card__logo-wrap {
    justify-content: flex-start;
    padding: 12px;
    border-radius: 15px;
  }

  .atlas-manufacturer-card__logo {
    width: 115px;
  }

  .atlas-manufacturer-card__content strong {
    font-size: 18px;
  }

  .atlas-manufacturer-card__points {
    gap: 6px;
  }

  .atlas-manufacturer-card__points span {
    font-size: 11px;
    padding: 6px 8px;
  }
}
/* =========================
   ATLAS MANUFACTURER CARD v1.1
========================= */

.atlas-manufacturer-card {
  display: grid !important;
  grid-template-columns: 150px 1fr !important;
  gap: 18px !important;
  align-items: center !important;
  background:
    radial-gradient(circle at top right, rgba(215,38,56,.08), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 22px !important;
  padding: 18px 20px !important;
  margin: 0 0 18px !important;
  box-shadow: 0 12px 32px rgba(15,23,42,.09) !important;
}

.atlas-manufacturer-card__logo-wrap {
  background: #ffffff !important;
  border: 1px solid #f1f5f9 !important;
  border-radius: 18px !important;
  padding: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.atlas-manufacturer-card__logo {
  width: 130px !important;
  height: auto !important;
  display: block !important;
}

.atlas-manufacturer-card__eyebrow {
  display: inline-block !important;
  background: #fee2e2 !important;
  color: #991b1b !important;
  border: 1px solid #fecaca !important;
  border-radius: 999px !important;
  padding: 6px 11px !important;
  font-size: 10px !important;
  font-weight: 950 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  margin-bottom: 8px !important;
}

.atlas-manufacturer-card__content strong {
  display: block !important;
  color: #111827 !important;
  font-size: 21px !important;
  font-weight: 950 !important;
  line-height: 1.1 !important;
  margin-bottom: 10px !important;
}

.atlas-manufacturer-card__points {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
}

.atlas-manufacturer-card__points span {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  color: #374151 !important;
  border-radius: 999px !important;
  padding: 7px 10px !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
}

@media only screen and (max-width: 749px) {
  .atlas-manufacturer-card {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 14px !important;
    border-radius: 18px !important;
    margin-bottom: 14px !important;
  }

  .atlas-manufacturer-card__logo-wrap {
    justify-content: flex-start !important;
    padding: 12px !important;
    border-radius: 15px !important;
  }

  .atlas-manufacturer-card__logo {
    width: 115px !important;
  }

  .atlas-manufacturer-card__content strong {
    font-size: 18px !important;
  }

  .atlas-manufacturer-card__points {
    gap: 6px !important;
  }

  .atlas-manufacturer-card__points span {
    font-size: 11px !important;
    padding: 6px 8px !important;
  }
}