/** Shopify CDN: Minification failed

Line 514:0 Unexpected "}"
Line 740:0 Expected "}" to go with "{"

**/
/* === GLOBAL BUTTON STYLES === */
.button-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.main-button {
  flex: 1;
  padding: 14px 0;
  border-radius: 9999px;
  text-align: center;
  text-decoration: none !important;
  font-weight: normal;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.main-button.primary {
  background-color: #000;
  color: #fff;
}

.main-button.outline {
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
}

.main-button.primary:hover {
  background-color: #333;
}

.main-button.outline:hover {
  background-color: #000;
  color: #fff;
}


/* === DESIGN OPTIONS MODAL STYLES === */
.design-options-wrapper .modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  overflow: auto;
}

.design-options-wrapper .modal-content {
  background-color: #f5f5f5;
  margin: 0 auto;
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 900px;
  max-height: 95vh;
  overflow-y: auto;
  box-sizing: border-box;
  box-shadow: 0 6px 30px rgba(0,0,0,0.25);
  position: relative; /* anchor .close absolutely inside */
}


.no-scroll {
  overflow: hidden;
  height: 100%;
}

.design-options-wrapper .close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #888;
  font-size: 28px;
  font-weight: 400;
  cursor: pointer;
  float: none !important; /* remove old float behavior */
  z-index: 2;
}


.design-options-wrapper .close:hover,
.design-options-wrapper .close:focus {
  color: black;
  text-decoration: none;
}

.design-options-wrapper .modal-header {
  text-align: center;
  margin-bottom: 25px;
  font-size: 35px;
}
.design-options-wrapper .next-step-header {
  text-align: center;
  margin-bottom: 25px;
  font-size: 30px;
}

.design-options-wrapper .modal-description {
  text-align: center;
  font-size: 15px;
  color: #555;
  margin-bottom: 32px;
  margin-top: 10px;
}

/* Desktop: 3 columns */
.design-options-wrapper .modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ✅ 3 equal cards */
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}


.design-options-wrapper .same-line-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 2rem;
}

.design-options-wrapper .modal-grid div,
.design-options-wrapper .same-line-grid div {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.design-options-wrapper .modal-grid div h3 {
  margin-bottom: 12px;
  margin-top: 0;
  font-size: 25px; 
  font-weight: 700;
  text-align: center;
}
.design-options-wrapper .modal-grid div h4 {
  margin-bottom: 12px;
  margin-top: 0;
  font-size: 30px; 
  font-weight: 700;
  text-align: center;
}
.design-options-wrapper .same-line-grid div h3 {
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: bold;
}
/* Limit the big 30px h3 to the LANDING cards only */
.design-options-wrapper #design-options-grid h3 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-top: 0;
  margin-bottom: 12px;
}

.design-options-wrapper .next-step-col h4 {
  margin-bottom: 12px;
  margin-top: 0;
  font-size: 30px; 
  font-weight: 700;
  text-align: center;
}
.design-options-wrapper .modal-grid div p,
.design-options-wrapper .same-line-grid div p {
  font-size: 13px;
  color: #555;
  margin: 4px 0 12px;
  text-align: center;
}

.design-options-wrapper .checkmark-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  width: 100%;
}

/* Use custom SVG checkmark and keep original text styling */
/* Inline checkmarks beside text */
.design-options-wrapper .checkmark-list li {
  display: flex;
  align-items: center;
  gap: 8px;                  /* space between checkmark and text */
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
  font-weight: 400;
}

.design-options-wrapper .checkmark-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;            /* prevents scaling */
  background-image: url('/cdn/shop/files/check-mark-new.svg?v=1762538711');
  background-size: contain;
  background-repeat: no-repeat;
}



.design-options-wrapper .modal-button {
  margin-top: 14px;
  padding: 14px 24px;
  width: 100%;
  background-color: #000;
  color: #fff;
  border-radius: 50px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease;
}

.design-options-wrapper .modal-button:hover {
  background-color: #333;
}

.design-options-wrapper .back-button-container {
  margin-bottom: 25px;
}

.design-options-wrapper .back-button {
  background-color: #f0f0f0;
  color: #000;
  border: 1px solid #ccc;
  font-weight: 500;
  padding: 14px 24px;
  width: 100%;
  border-radius: 50px;
  font-size: 15px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease;
}

.design-options-wrapper .back-button:hover {
  background-color: #e5e5e5;
}

.design-options-wrapper .upload-box {
  border: 2px dashed #ccc;
  border-radius: 12px;
  padding: 30px 10px;
  text-align: center;
  background-color: #f9f9f9;
  cursor: pointer;
}

.design-options-wrapper .upload-box:hover {
  border-color: #000;
  background-color: #f0f0f0;
}

.design-options-wrapper .upload-box p {
  margin: 0;
  font-size: 13px;
  color: #555;
}

.design-options-wrapper .upload-box span {
  text-decoration: underline;
  font-weight: bold;
}

.design-options-wrapper .notes-box {
  width: 100%;
  height: 80px;
  padding: 6px;
  font-size: 13px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-top: 10px;
}

.design-options-wrapper .file-preview {
  margin-top: 15px;
  font-size: 14px;
  color: #333;
}

.design-options-wrapper .toast {
  visibility: hidden;
  min-width: 200px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 12px;
  position: fixed;
  z-index: 1000;
  bottom: 30px;
  right: 30px;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.design-options-wrapper .toast.show {
  visibility: visible;
  opacity: 1;
}

.design-options-wrapper .hidden-upload-input {
  display: none;
}

.design-options-wrapper .download-link {
  display: flex; /* Previously: inline-flex */
  align-items: center;
  gap: 6px;
  text-decoration: underline;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 10px;
  color: #000;
}

.design-options-wrapper .download-link:hover {
  text-decoration: underline;
}

.design-options-wrapper .download-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-right: 6px;
}

.design-options-wrapper .delete-icon {
  background: none;
  border: none;
  color: #999;
  font-size: 18px;
  margin-left: 10px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.design-options-wrapper .delete-icon:hover {
  color: #e00;
}

.design-options-wrapper .next-step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.design-options-wrapper .next-step-col {
  background-color: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
  .design-options-wrapper .same-line-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .design-options-wrapper .modal-content {
  padding: 32px 20px 20px; /* extra top space so X doesn't overlap */
  border-radius: 12px;
}
.design-options-wrapper .close {
  top: 12px;
  right: 12px;
  font-size: 26px;
  color: #666;
}

.design-options-wrapper .same-line-grid {
  grid-template-columns: 1fr;
}

  .design-options-wrapper .modal-button,
  .design-options-wrapper .back-button {
    font-size: 16px;
    padding: 14px 0;
  }
  .design-options-wrapper .modal-description,
  .design-options-wrapper .notes-box,
  .design-options-wrapper .upload-box {
    font-size: 14px;
  }
}
/* ============================
   Two-column mobile landing grid
   (initial screen ONLY)
   ============================ */
@media (max-width: 767px) {

.design-options-wrapper #design-options-grid .modal-grid {
  grid-template-columns: 1fr !important; /* back to single column on phones */
  gap: 12px;
  max-width: 560px; /* a bit narrower for nicer line lengths */
  margin: 0 auto 14px;
}


  /* Keep secondary screens (same-line-grid / next-step-grid) in 1 col */
  .design-options-wrapper .same-line-grid,
  .design-options-wrapper .next-step-grid {
    grid-template-columns: 1fr !important;
  }

  /* Rectangular, equal-height tiles */
.design-options-wrapper #design-options-grid .modal-grid > div {
  height: auto;                /* ✅ let content define height */
  min-height: 180px;           /* gentle floor so cards don’t look stubby */
  padding: 12px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  text-align: center;
  overflow: hidden;
}


  /* Smaller headings */
  .design-options-wrapper #design-options-grid .modal-grid > div h3 {
    font-size: clamp(16px, 3.8vw, 18px);
    line-height: 1.2;
    margin: 0 0 6px;
    font-weight: 700;
  }

  /* Clamp short description to 2 lines */
  .design-options-wrapper #design-options-grid .modal-grid > div p {
  font-size: 11px;       /* ↓ smaller so more text fits */
  line-height: 1.3;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.design-options-wrapper .checkmark-list li {
  padding-left: 22px;   /* a bit less space on phones */
  font-size: 13px;      /* your previous mobile size */
}
.design-options-wrapper .checkmark-list li::before {
  width: 14px;
  height: 14px;
  top: 3px;
}

  /* Compact checklist; show only first 2 items */
  .design-options-wrapper #design-options-grid .checkmark-list {
    margin: 4px 0 8px;
  }
  .design-options-wrapper #design-options-grid .checkmark-list li {
    font-size: 12px;
    line-height: 1.25;
    margin-bottom: 4px;
    padding-left: 16px;
  }
  .design-options-wrapper #design-options-grid .checkmark-list li:nth-child(n+3) {
    display: none;
  }

  /* Buttons fill width, aligned to bottom */

.design-options-wrapper #design-options-grid .modal-button {
   font-size: 12px;
    padding: 10px 0;
  }
}


  /* Tighter header/description above the landing grid */
  .design-options-wrapper #design-options-header .modal-header {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .design-options-wrapper #design-options-header .modal-description {
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 1.45;
  }
}

/* Ultra-narrow safeguard: fall back to 1 column below ~380px */
@media (max-width: 380px) {
  .design-options-wrapper #design-options-grid .modal-grid {
    grid-template-columns: 1fr !important;
  }
}
/* Desktop shows long labels; mobile shows short labels */
.btn-text-mobile { display: none; }
@media (max-width: 767px) {
  .btn-text-desktop { display: none; }
  .btn-text-mobile { display: inline; }
  /* keep mobile button text on a single line */
  .design-options-wrapper #design-options-grid .modal-button {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px; /* tweak 11–13px if needed */
    padding: 10px 0;
  }
}
/* ===== Ensure "Design Options" is bold + clean on mobile ===== */
@media (max-width: 767px) {
  /* Main title on landing screen */
  .design-options-wrapper #design-options-header .modal-header {
    font-size: 22px;       /* You can even go 20px if needed */
    font-weight: 700;      /* ✅ Force bold back on mobile */
    line-height: 1.2;
    margin-bottom: 8px;
  }

  /* Subtitle under 'Design Options' */
  .design-options-wrapper #design-options-header .modal-description {
    font-size: 10px;        /* ✅ Smaller than before (was 15–16px) */
    line-height: 1.3;
    max-width: 90%;
    margin: 0 auto 14px;    /* Center + spacing */
    color: #555;            /* Keeps your original gray tone */
  }
}
/* Hide small subheader text inside cards on mobile */
@media (max-width: 767px) {
  .design-options-wrapper #design-options-grid .modal-grid > div p {
    display: -webkit-box;           /* show again on mobile */
    -webkit-line-clamp: 3;          /* keep tidy: up to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* Icons above card titles */
.design-options-wrapper .modal-grid .design-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  object-fit: contain;
}


/* Secondary row for Design Later */
.design-options-wrapper .design-later-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px; /* was 6px */
}

.design-options-wrapper .design-later-text {
  font-size: 14px;
  color: #555;
}
.design-options-wrapper .design-later-button {
  padding: 10px 14px;
  border-radius: 9999px;
  background: transparent;
  color: #000;
  border: 1px solid #000;
  font-size: 14px;
  cursor: pointer;
}
.design-options-wrapper .design-later-button:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 767px) {
 .design-options-wrapper .modal-grid .design-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 8px;
}

  .design-options-wrapper .design-later-text {
    font-size: 13px;
  }
  .design-options-wrapper .design-later-button {
    font-size: 12px;
    padding: 8px 12px;
  }

@media (max-width: 767px) {
  .design-options-wrapper #design-options-grid .modal-grid > div p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* Center icons above titles on all screen sizes */
.design-options-wrapper .modal-grid .design-icon {
  display: block;
  margin: 0 auto 10px; /* centers and adds spacing */
  object-fit: contain;
}
@media (max-width: 767px) {
  .design-options-wrapper .modal-grid > div {
    align-items: center !important; /* center all child elements */
    text-align: center !important;
  }
}
/* Keep all buttons one-line across ALL screen sizes */
.design-options-wrapper #design-options-grid .modal-button {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Spacing for the subtle links under the Upload button */
.design-options-wrapper #design-options-grid .download-link--subtle {
  margin-top: 8px;
  gap: 6px;
  color: #777; /* lighter gray text */
}
/* ===== Next-step screens: sane typography (desktop first) ===== */
.design-options-wrapper #use-template-next-step .next-step-header,
.design-options-wrapper #design-for-me-next-step .next-step-header {
  font-size: 24px !important;
  line-height: 1.25;
  margin-bottom: 12px;
}

.design-options-wrapper #use-template-next-step .modal-description,
.design-options-wrapper #design-for-me-next-step .modal-description {
  font-size: 14px !important;
  line-height: 1.45;
  max-width: 640px;
  margin: 0 auto 16px;
  color: #555;
}

/* Section titles inside the next-step cards */
.design-options-wrapper .next-step-col h4 {
  font-size: 20px !important;
  line-height: 1.25;
  margin: 10px 0 12px;
  font-weight: 700;
  text-align: center;
}

/* Mobile tweaks for next-step screens */
@media (max-width: 767px) {
  .design-options-wrapper #use-template-next-step .next-step-header,
  .design-options-wrapper #design-for-me-next-step .next-step-header {
    font-size: 20px !important;
    margin-bottom: 10px;
  }

  .design-options-wrapper #use-template-next-step .modal-description,
  .design-options-wrapper #design-for-me-next-step .modal-description {
    font-size: 13px !important;
    line-height: 1.4;
    max-width: 90%;
    margin: 0 auto 12px;
  }

  .design-options-wrapper .next-step-col h4 {
    font-size: 18px !important;
    margin: 8px 0 10px;
  }
}
/* === Ensure next-step main headers are bold (desktop + mobile) === */
.design-options-wrapper .next-step-header {
  font-weight: 700 !important;   /* ✅ Force bold like the main page */
  font-size: 30px;               /* Keep the size consistent */
  text-align: center;
  line-height: 1.2;
}

/* Optional: If you want it slightly smaller than the landing page (clean hierarchy): */
/*
.design-options-wrapper .next-step-header {
  font-weight: 700 !important;
  font-size: 26px; 
}
*/

/* === Mobile adjustment to match landing screen === */
@media (max-width: 767px) {
  .design-options-wrapper .next-step-header {
    font-weight: 700 !important;
    font-size: 20px;  /* or 22px if you want slightly bigger */
    line-height: 1.2;
  }
}
/* Smaller headings just for the service-level cards on Design For Me */
.design-options-wrapper #design-for-me-next-step .same-line-grid div h3 {
  font-size: 22px;      /* desktop */
  font-weight: 700;     /* keep bold, just smaller */
  line-height: 1.2;
}

/* Tweak the checklist under them so the card balance stays nice */
.design-options-wrapper #design-for-me-next-step .same-line-grid .checkmark-list li {
  font-size: 13px;
}

/* Mobile sizes for those headings */
@media (max-width: 767px) {
  .design-options-wrapper #design-for-me-next-step .same-line-grid div h3 {
    font-size: 18px;
  }
}


