/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 259:0 Unexpected "<"

**/
<style>
/* CONTAINER */
.ra-container {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0 60px;
  text-align: center;
}

/* HERO */
.ra-hero h1 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 30px;
}

.ra-sub {
  color: #555;
  margin-bottom: 20px;
  text-align: center;
}

/* CARDS */
.ra-cards {
  display: grid;
  max-width: 900px;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  text-align: center;
}

.ra-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  padding: 15px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.25s ease;
  cursor: pointer;
}

.ra-card-image {
  width: 80%;
  height: auto;
  border-radius: 0px;
  margin-top: 20px;
}

/* Featured OR hovered = promoted state */
.ra-card.ra-featured,
.ra-card:hover {
  border: 2px solid #010035;
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

/* Fade other cards when hovering */
.ra-cards:hover .ra-card {
  opacity: 0.6;
  transform: scale(0.98);
}

/* Keep hovered card strong */
.ra-cards .ra-card:hover {
  opacity: 1;
  transform: translateY(-6px) scale(1.02);
}

.ra-featured {
  border: 2px solid #010035;
}

.ra-badge {
  font-size: 0.8rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.ra-card:hover .ra-badge {
  background: #010035;
  color: #fff;
  padding: 4px 10px;
  border-radius: 8px;
}

.ra-price {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 10px 0;
}

/* FEATURES */
.ra-features {
  list-style: none;
  padding: 0;
  margin: 15px auto;
  text-align: left;
  max-width: 280px;
}

.ra-features li {
  margin: 8px 0;
  padding-left: 16px;
  position: relative;
}

.ra-features li::before {
  content: "•";
  position: absolute;
  left: 0;
}

/* BUTTONS */
.ra-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  min-height: 44px;
}

.ra-btn-primary {
  background: #010035;
  color: #fff;
}

.ra-btn-secondary {
  border: 1px solid #010035;
  color: #010035;
}

/* COMPARISON */
.ra-comparison-full {
  width: 100%;
  background: #fff;
  padding: 30px 20px;
}

.ra-comparison-inner {
  max-width: 900px;
  margin: auto;
}

.ra-comparison-inner h2 {
  margin-bottom: 25px;
  color: #54565A;
  margin-bottom: 25px;
  text-align: center;
}

.ra-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.ra-table th,
.ra-table td {
  padding: 14px;
  font-size: 1.8rem;
  text-align: center;
}

.ra-table th:first-child,
.ra-table td:first-child {
  text-align: left;
}

/* Table Bullet Formatting */
.ra-check {
  color: #D0271D;
  font-weight: bold;
}

/* Wrapper */
.ra-check {
  display: inline-block;
}

/* SVG sizing */
.ra-check-icon {
  width: 32px;
  height: 32px;
}

/* Background circle */
.ra-check-bg {
  fill: #F2F3F3; /* light red background */
}

/* Checkmark base state */
.ra-check-mark {
  fill: none;
  stroke: #D0271D;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;

  stroke-dasharray: 24;
  stroke-dashoffset: 24;

  animation: drawCheck 1.5s ease forwards;
}

/* Animation */
@keyframes drawCheck {
  from {
    stroke-dashoffset: 24;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.divider-row td {
  border-top: 1px solid #54565A;
  padding: 0;
}

.ra-cta-row td {
  padding-top: 20px;
}

.ra-cta-row .ra-btn {
  display: inline-block;
  width: 100%;
  max-width: 180px;
}

.ra-cta-row .ra-btn:hover {
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
  .ra-cards {
    grid-template-columns: 1fr;
  }

  .ra-table {
    display: block;
    overflow-x: auto;
  }
}
</style>