/** Shopify CDN: Minification failed

Line 21:18 Unexpected "{"
Line 21:27 Expected ":"
Line 27:18 Unexpected "{"
Line 27:27 Expected ":"
Line 33:18 Unexpected "{"
Line 33:27 Expected ":"
Line 39:18 Unexpected "{"
Line 39:27 Expected ":"
Line 45:18 Unexpected "{"
Line 45:27 Expected ":"
... and 44 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* ==== ALL YOUR CSS (SCOPED) ==== */

#changeable-card-{{ section.id }} .changeable-card-section{
  max-width: 1320px;
  margin: 0 auto;
  padding: 50px;
}

#changeable-card-{{ section.id }} .changeable-card-inner-container {
  display: flex;
  flex-direction: row;
  gap: 50px;
}

#changeable-card-{{ section.id }} .changeable-card-header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
}

#changeable-card-{{ section.id }} .gradient-effect {
  background: linear-gradient(135deg, #cdcdcd, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#changeable-card-{{ section.id }} .button-group {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 150px;
}

#changeable-card-{{ section.id }} .button-group button {
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 18px;
  text-align: left;
  border: none;
  cursor: pointer;
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
}

#changeable-card-{{ section.id }} .button-group button.active {
  background: black;
  color: white;
}

#changeable-card-{{ section.id }} .changeable-card-container {
  background: #f4f4f4;
  border-radius: 34px;
  padding: 30px;
  gap: 50px;
  display: flex;
}

#changeable-card-{{ section.id }} #card-description {
  margin: 20px 0;
}

#changeable-card-{{ section.id }} .image-section img {
  width: 300px;
  border-radius: 40px;
}

#changeable-card-{{ section.id }} #card-list li {
  position: relative;
  padding-left: 55px;
  margin-bottom: 15px;
  font-size: 18px;
}


#changeable-card-{{ section.id }} #card-list li strong {
  font-weight: 700;
  color: #005eff;
}

#changeable-card-{{ section.id }} #card-list li::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 810 810'><path fill='%23181818' d='M405.976 129.012c-7.477 273.902-13.543 279.973-287.449 287.45 273.906 7.48 279.973 13.546 287.449 287.452 7.485-273.906 13.551-279.973 287.457-287.452-273.906-7.476-279.972-13.548-287.457-287.45z'/><path fill='%23181818' d='M147.852 464.996c-2.16 78.996-3.91 80.742-82.906 82.898 78.996 2.156 80.746 3.906 82.906 82.902 2.152-78.996 3.902-80.746 82.894-82.902-78.992-2.156-80.742-3.902-82.894-82.898z'/><path fill='%23181818' d='M603.094 332.984c3.277-120.008 5.934-122.668 125.941-125.942-120.007-3.281-122.664-5.937-125.941-125.945-3.281 120.008-5.933 122.664-125.945 125.945 120.012 3.274 122.664 5.934 125.945 125.942z'/></svg>");
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

#changeable-card-{{ section.id }} .fade {
  animation: fadeIn 0.35s ease forwards;
}

#changeable-card-{{ section.id }} .content-section {
  display: flex;
  flex-direction: column;
}

#changeable-card-{{ section.id }} .card-note {
  margin-top: auto; /* pushes it to the bottom */
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
}

#changeable-card-{{ section.id }} .card-note-header {
  display: flex;
  flex-direction: row;
  gap: 10px;
}


#changeable-card-{{ section.id }} .card-note-header svg {
  width: 15px;
  margin-bottom: 7px;
  color: #737373;
}


#changeable-card-{{ section.id }} .card-note h4 {
  font-size: 18px;
  color: #737373;
  margin-bottom: 10px;
}

#changeable-card-{{ section.id }} .card-note p {
  font-size: 14px;
  color: #737373;
}

/* === MOBILE RESPONSIVE LAYOUT === */
@media (max-width: 768px) {

  /* Stack main inner container */
  #changeable-card-{{ section.id }} .changeable-card-inner-container {
    flex-direction: column;
    gap: 30px;
  }

  /* Move buttons above (already stacked, just set width/layout) */
  #changeable-card-{{ section.id }} .button-group {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  #changeable-card-{{ section.id }} .button-group button {
    font-size: 14px;
    padding: 6px 12px;
  }

  /* Card container becomes vertical */
  #changeable-card-{{ section.id }} .changeable-card-container {
    flex-direction: column;
    gap: 20px;
  }

  /* Image first, full width */
  #changeable-card-{{ section.id }} .image-section img {
    width: 300px;
    border-radius: 20px;
  }

  /* Text block below image */
  #changeable-card-{{ section.id }} .content-section {
    order: 2;
  }

    /* Text block below image */
  #changeable-card-{{ section.id }} .card-note {
    padding: 10px;
  }
}