:root {
  --primary: var(--red);
  --primary-dark: var(--red-dark);
  --text: var(--ink);
  --border: var(--line);
  --card: var(--white);
}

/* Save counter page refresh */
.save-page-modern {
  position: relative;
  display: grid;
  grid-template-columns: minmax(20rem, 30rem) minmax(28rem, 48rem);
  gap: clamp(2rem, 4vw, 3.8rem);
  align-items: center;
  justify-content: center;
  width: min(88rem, calc(100vw - 3rem));
  min-height: calc(100vh - 14rem);
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2.4rem) 0;
}

.save-page-modern::before,
.save-page-modern::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
  border: 2px solid rgba(230, 0, 35, 0.12);
  border-color: rgba(230, 0, 35, 0.12) transparent transparent transparent;
  border-radius: 50%;
}

.save-page-modern::before {
  right: -12rem;
  top: 7rem;
  width: 23rem;
  height: 23rem;
  transform: rotate(-24deg);
}

.save-page-modern::after {
  left: -10rem;
  bottom: -6rem;
  width: 48rem;
  height: 22rem;
  transform: rotate(10deg);
}

.save-hero-card {
  border: 1px solid #f2d7dd;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 2rem 5.5rem rgba(31, 26, 36, 0.06);
}

.save-hero-card svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.save-visual-card {
  display: grid;
  justify-items: center;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.55rem) 2rem;
  text-align: center;
}

.save-ready-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.6rem;
  margin-bottom: 1.7rem;
  padding: 0 1.25rem;
  border: 1px solid #f2c9d1;
  border-radius: 999px;
  color: var(--red);
  background: #fff7f8;
  font-weight: 950;
}

.save-ready-pill svg {
  stroke-width: 2.3;
}

.save-visual-card h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.6rem, 5.2vw, 5.2rem);
  line-height: 0.91;
  letter-spacing: -0.015em;
}

.save-visual-card h1 span,
.save-visual-card h3 span {
  color: var(--red);
}

.save-visual-card p {
  max-width: 19rem;
  margin: 1rem auto 1.7rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.45;
}

.save-photo-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: min(20rem, 76vw);
  aspect-ratio: 1;
  margin: 0.2rem auto 1.5rem;
  overflow: hidden;
  border: 0.85rem solid #fff;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #fff6f7 0 56%, #fff 57% 100%);
  box-shadow:
    0 0 0 1px #f7dce2,
    0 0 0 1.6rem rgba(230, 0, 35, 0.045),
    0 1.35rem 3rem rgba(230, 0, 35, 0.12);
}

.save-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.save-visual-card h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  line-height: 1.05;
}

.save-email-panel {
  padding: clamp(2rem, 4.5vw, 4.1rem) clamp(2rem, 5vw, 4.1rem);
}

.save-mail-icon {
  display: grid;
  place-items: center;
  width: 4.4rem;
  height: 4.4rem;
  margin-bottom: 1.5rem;
  border: 1px solid #f2d7dd;
  border-radius: 50%;
  color: var(--red);
  background: #fff2f4;
}

.save-mail-icon svg {
  width: 2rem;
  height: 2rem;
}

.save-email-panel h2 {
  max-width: 39rem;
  font-size: clamp(3.1rem, 5.1vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.018em;
}

.save-email-panel > p {
  max-width: 39rem;
  margin: 1.15rem 0 1.9rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.5;
}

.save-email-panel label {
  margin-bottom: 0.7rem;
  font-size: 1rem;
}

.save-email-input {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  width: 100%;
  min-height: 4.25rem;
  padding: 0 1.05rem;
  border: 1px solid #efbfc8;
  border-radius: 0.8rem;
  background: #fff;
  box-shadow: 0 1.1rem 3rem rgba(31, 26, 36, 0.045);
}

.save-email-input:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 0.25rem rgba(230, 0, 35, 0.08);
}

.save-email-input svg {
  width: 1.55rem;
  height: 1.55rem;
  color: #9b929b;
}

.save-email-input input {
  min-height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 1.2rem;
  font-weight: 850;
}

.save-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 16rem);
  gap: 1.35rem;
  align-items: center;
  margin-top: 1.75rem;
}

.save-primary-button,
.save-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 4.25rem;
  border-radius: 0.8rem;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 950;
  text-decoration: none;
}

.save-primary-button {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--red), #d90021);
  box-shadow: 0 1.2rem 2.7rem rgba(230, 0, 35, 0.18);
  cursor: pointer;
}

.save-primary-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.save-primary-button svg,
.save-outline-button svg {
  width: 1.35rem;
  height: 1.35rem;
}

.save-outline-button {
  border: 1px solid #efbfc8;
  color: var(--red);
  background: #fff;
}

.save-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 2.7rem 0 0;
  padding: 0;
  list-style: none;
}

.save-feature-row li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 0.85rem;
  align-items: center;
  min-width: 0;
  padding: 0 1rem;
  border-right: 1px solid #efe0e4;
}

.save-feature-row li:first-child {
  padding-left: 0;
}

.save-feature-row li:last-child {
  padding-right: 0;
  border-right: 0;
}

.save-feature-row span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid #f2d7dd;
  border-radius: 50%;
  color: var(--red);
  background: #fff4f5;
}

.save-feature-row strong {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.15;
}

.save-feature-row small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.28;
}

body:has(.save-page-modern) {
  background:
    radial-gradient(circle at 92% 23%, rgba(230, 0, 35, 0.08), transparent 18rem),
    radial-gradient(circle at 95% 100%, rgba(230, 0, 35, 0.12), transparent 22rem),
    linear-gradient(180deg, #fff 0%, #fffafa 58%, #fff3f5 100%);
}

body:has(.save-page-modern) main.shell {
  width: 100%;
  max-width: none;
  padding-top: clamp(1.5rem, 4vw, 3.5rem);
}

@media (max-width: 980px) {
  .save-page-modern {
    grid-template-columns: 1fr;
    width: min(42rem, calc(100vw - 2rem));
    min-height: auto;
  }

  .save-email-panel {
    order: -1;
  }

  .save-feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .save-feature-row li {
    padding: 0;
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .save-page-modern {
    width: min(100% - 1.25rem, 38rem);
  }

  .save-email-panel,
  .save-visual-card {
    padding: 1.4rem;
  }

  .save-actions,
  .save-feature-row {
    grid-template-columns: 1fr;
  }

  .save-email-panel h2 {
    font-size: clamp(2.55rem, 14vw, 3.5rem);
  }

  .save-visual-card h1 {
    font-size: clamp(3rem, 15vw, 4.1rem);
  }
}

body.php-app-page,
body.php-flow-page,
body.php-auth-page,
body.php-public-page,
body.php-error-page {
  background:
    radial-gradient(circle at 94% 22%, rgba(230, 0, 35, 0.09) 0 4.5rem, transparent 8.5rem),
    radial-gradient(circle at 88% 78%, rgba(230, 0, 35, 0.08) 0 9rem, transparent 16rem),
    linear-gradient(180deg, #ffffff 0%, #fffbfa 42%, #fff4f5 100%);
}

.php-counter-shell,
.php-flow-shell,
.php-auth-shell,
.php-public-shell,
.php-error-shell {
  width: min(94rem, calc(100% - 3rem));
  margin: 2rem auto 3rem;
}

.php-flow-shell,
.php-auth-shell,
.php-error-shell {
  width: min(76rem, calc(100% - 3rem));
}

.php-minimal-footer {
  margin-top: 1rem;
}

.php-counter-account {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.counter-avatar span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.counter-logout-button {
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--red);
  background: #fff;
  box-shadow: 0 0.55rem 1.4rem rgba(31, 26, 36, 0.06);
  font-size: 0.9rem;
  line-height: 1;
}

.counter-logout-button:hover {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid.two-col {
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
}

.php-counter-shell > .grid.two-col {
  grid-template-columns: minmax(0, 1.55fr) minmax(20rem, 0.75fr);
}

.php-flow-shell > .grid.two-col,
.php-auth-shell > .grid.two-col {
  grid-template-columns: minmax(17rem, 0.62fr) minmax(0, 1.38fr);
}

.card,
.form-panel,
.preview-card,
.error-box {
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1.4rem 4rem rgba(31, 26, 36, 0.06);
}

.card {
  padding: clamp(1.35rem, 2.4vw, 2rem);
}

.form-panel {
  padding: 1.15rem;
}

.card h1,
.card h2 {
  margin-top: 0.85rem;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
}

.card p {
  color: var(--muted);
}

.pill {
  border-color: #f4cdd3;
  color: var(--red);
  background: #fff5f6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.button,
.primary-button,
.secondary-button,
.settings-primary-button,
.settings-save-top {
  display: inline-flex;
  min-height: 3.3rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0 1.45rem;
  border: 1px solid transparent;
  border-radius: 0.85rem;
  color: #fff;
  background: linear-gradient(180deg, #ef0a24 0%, #d90019 100%);
  box-shadow: 0 0.9rem 1.8rem rgba(230, 0, 35, 0.18);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.settings-form-stack {
  display: grid;
  gap: 1rem;
}

.settings-upload-button {
  cursor: pointer;
}

.settings-toggle-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.settings-toggle-row input[type="checkbox"] {
  appearance: none;
  position: relative;
  display: inline-block;
  flex: 0 0 2.55rem;
  width: 2.55rem !important;
  min-width: 2.55rem;
  max-width: 2.55rem;
  height: 1.35rem;
  min-height: 1.35rem;
  margin: 0;
  padding: 0;
  border: 1px solid #ddd5da;
  border-radius: 999px;
  background: #f2eef0;
  box-shadow: none;
  cursor: pointer;
}

.settings-toggle-row input[type="checkbox"]::after {
  content: "";
  position: absolute;
  top: 0.14rem;
  left: 0.16rem;
  width: 0.96rem;
  height: 0.96rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0.1rem 0.35rem rgba(31, 26, 36, 0.18);
  transition: transform 0.18s ease;
}

.settings-toggle-row input[type="checkbox"]:checked {
  border-color: var(--red);
  background: var(--red);
}

.settings-toggle-row input[type="checkbox"]:checked::after {
  transform: translateX(1.15rem);
}

.settings-toggle-row span {
  min-width: 0;
}

.settings-save-top:disabled,
.settings-primary-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.button.secondary,
.secondary-button,
.settings-outline-button,
.settings-outline-red,
.counter-actions button,
.counter-actions a {
  color: var(--red);
  border-color: #f0cbd2;
  background: #fff;
  box-shadow: none;
}

.button:hover,
.primary-button:hover {
  transform: translateY(-1px);
}

.field-grid,
.input-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.input-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

label {
  color: var(--ink);
  font-weight: 900;
}

input,
select,
textarea {
  border-color: var(--line);
  border-radius: 1rem;
  color: var(--ink);
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 0.25rem rgba(230, 0, 35, 0.08);
}

.avatar-preview,
.counter-hero-photo,
.photo-frame {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: #fff4f5;
}

.avatar-preview {
  width: min(18rem, 70vw);
  aspect-ratio: 1;
  margin: 1.5rem auto;
  border: 0.75rem solid #fff;
  box-shadow: 0 1.1rem 2.8rem rgba(230, 0, 35, 0.12);
}

.avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.counter-days,
.counter-days-number {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
}

.stat-grid,
.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.stat,
.theme-option {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  background: #fff;
  text-align: center;
}

.theme-option[data-active="true"],
.theme-option:hover {
  border-color: var(--red);
  box-shadow: 0 0 0 0.22rem rgba(230, 0, 35, 0.07);
}

.theme-swatch {
  display: block;
  width: 100%;
  height: 4rem;
  margin-bottom: 0.75rem;
  border-radius: 0.8rem;
  border: 1px solid var(--line);
}

.error-box {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  color: var(--red-dark);
  background: #fff4f5;
}

.tiny {
  color: var(--muted);
}

body.php-flow-page .card:first-child,
body.php-auth-page .card:first-child {
  position: sticky;
  top: 1.25rem;
}

body.php-app-page .card:first-child .pill + h1,
body.php-app-page .card:first-child .pill + h2,
body.php-flow-page .card .pill + h2 {
  font-size: clamp(2.25rem, 4.8vw, 4.2rem);
}

body.php-app-page .preview-card,
body.php-flow-page .preview-card {
  text-align: center;
}

body.php-app-page .preview-card h3 {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
}

#memories-list,
#events-list,
#gifts-list,
#milestones-list {
  gap: 1rem;
}

#memories-list.memory-grid {
  gap: 1.1rem;
}

#memories-list .memory-card {
  min-width: 0;
}

#memories-list .memory-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.memory-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 28% 22%, rgba(230, 0, 35, 0.14), transparent 28%),
    linear-gradient(135deg, #fff7f8, #ffe6ea);
}

.memory-placeholder span {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border-radius: 999px;
  color: var(--red);
  background: #fff;
  box-shadow: 0 0.75rem 1.8rem rgba(31, 26, 36, 0.08);
  font: 900 1.45rem/1 var(--font-display);
}

.memory-form-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.memory-form-actions .save-memory-button {
  flex: 1;
}

.memory-empty-card {
  display: grid;
  min-height: 18rem;
  place-items: center;
  align-content: center;
  text-align: center;
}

.memory-empty-card .save-memory-button {
  display: inline-flex;
  width: auto;
  margin-top: 0.35rem;
  text-decoration: none;
}

.memory-locked-card {
  width: min(52rem, 100%);
  margin: 0 auto;
}

.event-card-actions {
  gap: 0.45rem;
}

.event-empty-card {
  display: grid;
  min-height: 18rem;
  place-items: center;
  align-content: center;
  padding: 2rem;
  border: 1px solid #efe5e8;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 1rem 2.4rem rgba(31, 26, 36, 0.03);
  text-align: center;
}

.event-empty-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.event-empty-card p {
  margin: 0.4rem auto 1rem;
  max-width: 24rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.event-empty-card .save-memory-button {
  display: inline-flex;
  width: auto;
  text-decoration: none;
}

.event-form-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.event-form-actions .save-memory-button {
  flex: 1;
}

.event-locked-card {
  width: min(52rem, 100%);
  margin: 0 auto;
}

.gift-locked-card {
  width: min(52rem, 100%);
  margin: 0 auto;
}

.gift-top small {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-weight: 700;
}

.gift-summary-card strong {
  overflow-wrap: anywhere;
}

.gift-table .gift-empty-card {
  margin-top: 0.8rem;
}

.gift-empty-card {
  text-align: center;
}

.gift-form-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1rem;
}

.gift-form-actions .modal-secondary {
  min-height: 3.15rem;
  padding: 0 1.15rem;
}

.gift-upload-field input[type="file"] {
  min-height: 3.2rem;
  padding: 0.8rem;
}

.gift-category-pill.handmade,
.gift-category-pill.fashion,
.gift-category-pill.beauty,
.gift-category-pill.food,
.gift-category-pill.travel,
.gift-category-pill.home,
.gift-category-pill.book {
  color: #e60023;
  background: #fff0f2;
}

.gift-category-icon.handmade,
.gift-category-icon.fashion,
.gift-category-icon.beauty,
.gift-category-icon.food,
.gift-category-icon.travel,
.gift-category-icon.home,
.gift-category-icon.book {
  color: #e60023;
  background: #fff0f2;
}

.gift-status-chip.gifted {
  color: #0f766e;
  background: #e7f6f1;
}

@media (max-width: 720px) {
  .gift-form-actions {
    grid-template-columns: 1fr;
  }
}

.milestone-locked-card {
  width: min(52rem, 100%);
  margin: 0 auto;
}

.milestone-top small {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-weight: 700;
}

.milestone-empty-card {
  margin-top: 0.8rem;
  text-align: center;
}

.milestone-row-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.milestone-form-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1rem;
}

.milestone-form-actions .modal-secondary {
  min-height: 3.15rem;
  padding: 0 1.15rem;
}

.milestone-icon.heart,
.milestone-icon.star,
.milestone-icon.gift,
.milestone-icon.ring,
.milestone-icon.home,
.milestone-icon.sparkle {
  color: #e60023;
  background: #fff0f2;
}

@media (max-width: 720px) {
  .milestone-form-actions {
    grid-template-columns: 1fr;
  }
}

.event-icon.custom,
.event-icon.personal,
.event-icon.gift,
.event-icon.holiday,
.event-icon.date_night {
  color: var(--red);
  background: #fff0f2;
}

#memories-list .form-panel,
#events-list .form-panel,
#gifts-list .form-panel,
#milestones-list .form-panel,
.event-list li {
  border-radius: 1.2rem;
}

.locked-card,
#memories-locked,
#events-locked,
#gifts-locked,
#milestones-locked,
#share-locked {
  text-align: center;
}

@media (max-width: 980px) {
  .grid.two-col,
  .php-counter-shell > .grid.two-col,
  .php-flow-shell > .grid.two-col,
  .php-auth-shell > .grid.two-col,
  .field-grid,
  .input-row {
    grid-template-columns: 1fr;
  }

  body.php-flow-page .card:first-child,
  body.php-auth-page .card:first-child {
    position: static;
  }
}

@media (max-width: 720px) {
  .php-counter-shell,
  .php-flow-shell,
  .php-auth-shell,
  .php-public-shell,
  .php-error-shell {
    width: min(100% - 1.5rem, 38rem);
    margin-top: 1rem;
  }

  .counter-header,
  .site-header {
    min-height: auto;
    padding: 1rem 0.9rem;
  }

  .counter-nav,
  .main-nav {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.25rem;
  }

  .counter-header {
    grid-template-columns: 1fr auto;
  }

  .counter-nav {
    grid-column: 1 / -1;
  }

  .stat-grid,
  .theme-grid {
    grid-template-columns: 1fr;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .primary-button,
  .secondary-button {
    width: 100%;
  }
}

/* Compact save page pass */
body:has(.save-page-modern) main.shell {
  padding-top: clamp(0.9rem, 2.6vw, 2.15rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.save-page-modern {
  grid-template-columns: minmax(20rem, 25.6rem) minmax(32rem, 45.5rem);
  gap: clamp(1.7rem, 3vw, 2.75rem);
  width: min(76rem, calc(100vw - 3rem));
  min-height: auto;
  align-items: center;
}

.save-hero-card {
  border-color: #f3cdd4;
  border-radius: 1.28rem;
  box-shadow: 0 1.35rem 4.2rem rgba(31, 26, 36, 0.055);
}

.save-visual-card {
  min-height: 40rem;
  padding: 2rem 2.05rem 1.65rem;
}

.save-ready-pill {
  min-height: 2.25rem;
  margin-bottom: 1.35rem;
  padding: 0 1.05rem;
  font-size: 0.96rem;
}

.save-visual-card h1 {
  font-size: clamp(3.15rem, 4.25vw, 4.35rem);
  line-height: 0.92;
}

.save-visual-card p {
  max-width: 17.5rem;
  margin: 0.85rem auto 1.4rem;
  font-size: 1.02rem;
  line-height: 1.38;
}

.save-photo-frame {
  width: min(16.8rem, 67vw);
  border-width: 0.72rem;
  box-shadow:
    0 0 0 1px #f7dce2,
    0 0 0 1.2rem rgba(230, 0, 35, 0.045),
    0 1rem 2.4rem rgba(230, 0, 35, 0.1);
}

.save-visual-card h3 {
  margin-top: 0.2rem;
  font-size: clamp(1.65rem, 2.2vw, 2.05rem);
}

.save-email-panel {
  min-height: 34.6rem;
  padding: 3rem 3.2rem 2.35rem;
}

.save-mail-icon {
  width: 3.65rem;
  height: 3.65rem;
  margin-bottom: 1.35rem;
}

.save-mail-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.save-email-panel h2 {
  max-width: none;
  font-size: clamp(3.15rem, 4.25vw, 4.35rem);
  line-height: 0.98;
  white-space: nowrap;
}

.save-email-panel > p {
  max-width: 38rem;
  margin: 1rem 0 1.55rem;
  font-size: 1.13rem;
  line-height: 1.45;
}

.save-email-input {
  min-height: 3.85rem;
  border-radius: 0.74rem;
}

.save-email-input input {
  font-size: 1.06rem;
}

.save-actions {
  grid-template-columns: minmax(0, 1fr) 13.4rem;
  gap: 1.3rem;
  margin-top: 1.55rem;
}

.save-primary-button,
.save-outline-button {
  min-height: 3.85rem;
  border-radius: 0.74rem;
  font-size: 1.04rem;
}

.save-feature-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2.25rem;
}

.save-feature-row li {
  grid-template-columns: 2.8rem minmax(0, 1fr);
  column-gap: 0.72rem;
  padding: 0 0.82rem;
  align-items: start;
}

.save-feature-row span {
  width: 2.55rem;
  height: 2.55rem;
}

.save-feature-row svg {
  width: 1.08rem;
  height: 1.08rem;
}

.save-feature-row strong {
  font-size: 0.83rem;
  line-height: 1.08;
}

.save-feature-row small {
  margin-top: 0.18rem;
  font-size: 0.71rem;
  line-height: 1.22;
}

@media (max-width: 1120px) {
  .save-page-modern {
    grid-template-columns: minmax(18rem, 23rem) minmax(28rem, 1fr);
    width: min(68rem, calc(100vw - 2rem));
  }

  .save-email-panel h2 {
    white-space: normal;
  }
}

@media (max-width: 980px) {
  .save-page-modern {
    grid-template-columns: 1fr;
    width: min(42rem, calc(100vw - 2rem));
  }

  .save-visual-card,
  .save-email-panel {
    min-height: 0;
  }

  .save-email-panel {
    order: -1;
  }
}

@media (max-width: 720px) {
  .save-email-panel,
  .save-visual-card {
    padding: 1.35rem;
  }

  .save-actions,
  .save-feature-row {
    grid-template-columns: 1fr;
  }

  .save-feature-row li {
    border-right: 0;
    padding: 0;
  }
}

/* Save email screen final parity pass */
body.save-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 93% 24%, rgba(230, 0, 35, 0.06), transparent 18rem),
    radial-gradient(circle at 96% 100%, rgba(230, 0, 35, 0.13), transparent 25rem),
    linear-gradient(135deg, #fff 0%, #fff 48%, #fff7f8 100%);
}

body.save-page .site-header {
  max-width: 94rem;
  margin: 0 auto;
  padding: clamp(1.35rem, 2.6vw, 2.35rem) clamp(1.1rem, 4vw, 2rem) 0;
  border-bottom: 0;
}

body.save-page .site-header .brand img {
  width: clamp(9.6rem, 15vw, 13.2rem);
}

body.save-page .site-header .main-nav {
  display: none;
}

body.save-page main.save-shell-modern {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(1.35rem, 3vw, 2.25rem) clamp(1rem, 4vw, 2rem) clamp(2rem, 4vw, 3.5rem);
}

body.save-page .save-page-modern {
  display: grid;
  grid-template-columns: minmax(21rem, 25.6rem) minmax(34rem, 45.5rem);
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 4vw, 3rem);
  width: min(76.5rem, 100%);
  min-height: min(43.8rem, calc(100vh - 9rem));
  margin: 0 auto;
  padding: 0;
}

body.save-page .save-hero-card {
  position: relative;
  z-index: 1;
  border: 1px solid #f4c8d0;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2.4rem 5.5rem rgba(230, 0, 35, 0.09);
}

body.save-page .save-visual-card {
  min-height: 41.8rem;
  padding: 2rem 2.15rem 1.45rem;
  text-align: center;
}

body.save-page .save-ready-pill,
body.save-page .save-mobile-ready-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.15rem;
  padding: 0 1.05rem;
  border: 1px solid #f4c8d0;
  border-radius: 999px;
  background: #fff7f8;
  color: #e60023;
  font-weight: 900;
}

body.save-page .save-ready-pill svg,
body.save-page .save-mobile-ready-pill svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
}

body.save-page .save-mobile-ready-pill {
  display: none;
}

body.save-page .save-visual-card h1 {
  margin: 1.35rem auto 0.65rem;
  color: #1f1a24;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4rem, 5.35vw, 5.1rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

body.save-page .save-visual-card h1 span,
body.save-page .save-title-mobile span {
  color: #e60023;
}

body.save-page .save-visual-card p {
  max-width: 18rem;
  margin: 0 auto 1.35rem;
  color: #6b5f6f;
  font-size: 1.05rem;
  line-height: 1.45;
}

body.save-page .save-photo-frame {
  width: min(18.8rem, 78vw);
  height: min(18.8rem, 78vw);
  margin: 0.1rem auto 1.1rem;
  border: 1rem solid #fff;
  outline: 1.25rem solid #fff0f2;
  border-radius: 999px;
  overflow: hidden;
  background: #fff7f8;
}

body.save-page .save-photo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body.save-page .save-visual-card h3 {
  margin: 1.35rem 0 0;
  color: #1f1a24;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

body.save-page .save-visual-card h3 span {
  color: #e60023;
}

body.save-page .save-email-panel {
  min-height: 31.2rem;
  padding: 3rem 3.2rem 2.3rem;
}

body.save-page .save-mail-icon {
  width: 3.6rem;
  height: 3.6rem;
  margin: 0 0 1.6rem;
  border: 1px solid #f4c8d0;
  border-radius: 999px;
  background: #fff0f2;
  color: #e60023;
}

body.save-page .save-mail-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
}

body.save-page .save-email-panel h2 {
  margin: 0;
  color: #1f1a24;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4rem, 5vw, 5.25rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

body.save-page .save-title-mobile,
body.save-page .save-copy-mobile,
body.save-page .save-button-mobile,
body.save-page .save-mobile-note,
body.save-page .save-mobile-chip {
  display: none;
}

body.save-page .save-email-panel > p {
  max-width: 38rem;
  margin: 1.05rem 0 1.55rem;
  color: #6b5f6f;
  font-size: 1.18rem;
  line-height: 1.45;
}

body.save-page .save-email-panel label {
  display: block;
  margin: 0 0 0.65rem;
  color: #1f1a24;
  font-weight: 900;
}

body.save-page .save-email-input {
  display: grid;
  grid-template-columns: 2.55rem 1fr;
  align-items: center;
  height: 4.1rem;
  padding: 0 1.1rem;
  border: 1px solid #f4b8c2;
  border-radius: 0.72rem;
  background: #fff;
}

body.save-page .save-email-input svg {
  width: 1.32rem;
  height: 1.32rem;
  fill: none;
  stroke: #9b929d;
  stroke-width: 2.15;
}

body.save-page .save-email-input input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #1f1a24;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 800;
}

body.save-page .save-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(11rem, 0.85fr);
  gap: 1rem;
  margin-top: 1.55rem;
}

body.save-page .save-primary-button,
body.save-page .save-outline-button {
  min-height: 3.85rem;
  border-radius: 0.72rem;
  font-size: 1rem;
  font-weight: 900;
}

body.save-page .save-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 0;
  background: linear-gradient(135deg, #e60023, #bd081c);
  color: #fff;
  box-shadow: 0 1.2rem 2.4rem rgba(230, 0, 35, 0.18);
  cursor: pointer;
}

body.save-page .save-primary-button svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
}

body.save-page .save-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f4b8c2;
  background: #fff;
  color: #e60023;
  text-decoration: none;
}

body.save-page .save-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

body.save-page .save-feature-row li {
  display: grid;
  grid-template-columns: 2.55rem minmax(0, 1fr);
  column-gap: 0.65rem;
  align-items: start;
  padding: 0 0.8rem;
  border-right: 1px solid #f2d7dd;
}

body.save-page .save-feature-row li:first-child {
  padding-left: 0;
}

body.save-page .save-feature-row li:last-child {
  border-right: 0;
  padding-right: 0;
}

body.save-page .save-feature-row span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid #f4c8d0;
  border-radius: 999px;
  background: #fff0f2;
  color: #e60023;
}

body.save-page .save-feature-row svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
}

body.save-page .save-feature-row strong {
  color: #1f1a24;
  font-size: 0.82rem;
  line-height: 1.08;
}

body.save-page .save-feature-row small {
  margin-top: 0.16rem;
  color: #6b5f6f;
  font-size: 0.69rem;
  font-weight: 700;
  line-height: 1.22;
}

@media (max-width: 980px) {
  body.save-page .save-page-modern {
    grid-template-columns: minmax(0, 40rem);
    width: min(100%, 40rem);
    min-height: 0;
  }

  body.save-page .save-email-panel {
    order: -1;
  }
}

@media (max-width: 720px) {
  body.save-page {
    background:
      radial-gradient(circle at 95% 95%, rgba(230, 0, 35, 0.1), transparent 16rem),
      linear-gradient(160deg, #fff 0%, #fff 54%, #fff7f8 100%);
  }

  body.save-page .site-header {
    display: none;
  }

  body.save-page main.save-shell-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2.2rem, 8vh, 4rem) 1.25rem 7.8rem;
  }

  body.save-page .save-page-modern {
    display: block;
    width: min(100%, 28rem);
    margin: 0 auto;
  }

  body.save-page .save-page-modern::before,
  body.save-page .save-page-modern::after,
  body.save-page .save-visual-card,
  body.save-page .save-mail-icon,
  body.save-page .save-title-desktop,
  body.save-page .save-copy-desktop,
  body.save-page .save-button-desktop,
  body.save-page .save-feature-row {
    display: none;
  }

  body.save-page .save-email-panel {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
  }

  body.save-page .save-mobile-ready-pill {
    display: inline-flex;
    margin-bottom: 1.5rem;
    min-height: 2.9rem;
    padding: 0 1.35rem;
    font-size: 1.05rem;
  }

  body.save-page .save-title-mobile,
  body.save-page .save-copy-mobile,
  body.save-page .save-button-mobile {
    display: inline;
  }

  body.save-page .save-email-panel h2 {
    max-width: 100%;
    font-size: clamp(3.55rem, 15vw, 5.2rem);
    line-height: 0.98;
  }

  body.save-page .save-email-panel > p {
    max-width: none;
    margin: 1.15rem 0 2rem;
    font-size: 1.35rem;
    line-height: 1.32;
  }

  body.save-page .save-email-panel label {
    text-align: left;
    font-size: 1rem;
  }

  body.save-page .save-email-input {
    height: 4.6rem;
    border-radius: 0.9rem;
    grid-template-columns: 3rem 1fr;
  }

  body.save-page .save-email-input input {
    font-size: 1.15rem;
  }

  body.save-page .save-actions {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.4rem;
  }

  body.save-page .save-primary-button,
  body.save-page .save-outline-button {
    min-height: 4.65rem;
    width: 100%;
    border-radius: 0.9rem;
    font-size: 1.15rem;
  }

  body.save-page .save-mobile-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin: 1.55rem 0 0;
    color: #6b5f6f;
    font-size: 1rem;
  }

  body.save-page .save-mobile-note svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    stroke: #ff6f86;
    stroke-width: 2.1;
  }

  body.save-page .save-mobile-chip {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    max-width: calc(100vw - 2rem);
    padding: 0.55rem 1rem 0.55rem 0.55rem;
    border: 1px solid #f4c8d0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 1rem 2.5rem rgba(31, 26, 36, 0.1);
  }

  body.save-page .save-mobile-chip img {
    width: 4.1rem;
    height: 4.1rem;
    flex: 0 0 auto;
    border: 0.28rem solid #fff;
    border-radius: 999px;
    object-fit: cover;
    background: #fff7f8;
  }

  body.save-page .save-mobile-chip strong {
    color: #1f1a24;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.15rem;
    line-height: 1;
    white-space: nowrap;
  }

  body.save-page .save-mobile-chip span {
    color: #e60023;
  }
}

/* Final save-with-email screen */
body.save-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 94% 16%, rgba(230, 0, 35, 0.06), transparent 18rem),
    radial-gradient(circle at 91% 94%, rgba(230, 0, 35, 0.12), transparent 25rem),
    radial-gradient(circle at 7% 72%, rgba(230, 0, 35, 0.08), transparent 22rem),
    linear-gradient(160deg, #fff 0%, #fff 56%, #fff7f8 100%);
}

body.save-page .site-header,
body.save-page .save-visual-card,
body.save-page .save-mail-icon,
body.save-page .save-feature-row,
body.save-page .save-title-desktop,
body.save-page .save-title-mobile,
body.save-page .save-copy-desktop,
body.save-page .save-copy-mobile,
body.save-page .save-button-desktop,
body.save-page .save-button-mobile {
  display: none !important;
}

body.save-page::before {
  content: "";
  position: fixed;
  left: -10rem;
  bottom: -13rem;
  width: 47rem;
  height: 24rem;
  pointer-events: none;
  border: 2px solid rgba(230, 0, 35, 0.1);
  border-radius: 50%;
  transform: rotate(9deg);
}

body.save-page main.save-shell-modern {
  display: grid;
  place-items: center;
  min-height: 100vh;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  padding: clamp(2rem, 6vw, 5.5rem) 1.25rem;
}

body.save-page .save-page-modern {
  display: block;
  width: min(100%, 45rem);
  min-height: 0;
  margin: 0 auto;
  transform: translateX(clamp(-9rem, -7vw, -4rem));
}

body.save-page .save-page-modern::before,
body.save-page .save-page-modern::after {
  display: none;
}

body.save-page .save-email-panel {
  display: grid;
  justify-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

body.save-page .save-mobile-ready-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.2rem;
  margin: 0 0 1.7rem;
  padding: 0 1.55rem;
  border: 1px solid #f2b8c2;
  border-radius: 999px;
  color: #e60023;
  background: #fff7f8;
  font-size: 1.18rem;
  font-weight: 900;
}

body.save-page .save-mobile-ready-pill svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
}

body.save-page .save-email-panel h2 {
  max-width: 100%;
  margin: 0;
  color: #1f1a24;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4.2rem, 8vw, 6.7rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

body.save-page .save-email-panel h2 span {
  color: #e60023;
}

body.save-page .save-email-panel > p {
  max-width: none;
  margin: 1.35rem 0 2.25rem;
  color: #6b5f6f;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.35;
}

body.save-page #save-counter-form {
  width: min(100%, 43rem);
}

body.save-page .save-email-panel label {
  display: block;
  margin: 0 0 0.65rem;
  color: #1f1a24;
  font-size: 1.08rem;
  font-weight: 900;
  text-align: left;
}

body.save-page .save-email-input {
  display: grid;
  grid-template-columns: 3.3rem minmax(0, 1fr);
  align-items: center;
  width: 100%;
  height: 5.15rem;
  padding: 0 1.45rem;
  border: 1px solid #f0aebb;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

body.save-page .save-email-input:focus-within {
  border-color: #e60023;
  box-shadow: 0 0 0 0.28rem rgba(230, 0, 35, 0.08);
}

body.save-page .save-email-input svg {
  width: 1.45rem;
  height: 1.45rem;
  color: #9b929b;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
}

body.save-page .save-email-input input {
  width: 100%;
  min-height: 3rem;
  padding: 0;
  border: 0;
  outline: 0;
  color: #1f1a24;
  background: transparent;
  font: inherit;
  font-size: 1.45rem;
  font-weight: 800;
}

body.save-page .save-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.85rem;
}

body.save-page .save-primary-button,
body.save-page .save-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5.05rem;
  width: 100%;
  border-radius: 0.85rem;
  font-size: 1.45rem;
  font-weight: 900;
  text-decoration: none;
}

body.save-page .save-primary-button {
  gap: 1rem;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #f00025, #d90021);
  box-shadow: 0 1.35rem 3.2rem rgba(230, 0, 35, 0.18);
}

body.save-page .save-primary-button svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

body.save-page .save-outline-button {
  border: 1px solid #efbfc8;
  color: #e60023;
  background: rgba(255, 255, 255, 0.72);
}

body.save-page .save-mobile-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 2.15rem 0 0;
  color: #6b5f6f;
  font-size: 1.2rem;
  font-weight: 700;
}

body.save-page .save-mobile-note svg {
  width: 1.6rem;
  height: 1.6rem;
  color: #ff8fa3;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

body.save-page .save-mobile-chip {
  position: fixed;
  left: 4rem;
  bottom: 4.2rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 1.05rem;
  min-width: 20rem;
  max-width: min(26rem, calc(100vw - 2rem));
  padding: 0.75rem 1.6rem 0.75rem 0.75rem;
  border: 1px solid #efbfc8;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1.4rem 4rem rgba(31, 26, 36, 0.08);
}

body.save-page .save-mobile-chip img {
  width: 5.6rem;
  height: 5.6rem;
  flex: 0 0 auto;
  border: 0.35rem solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px #f5cbd2;
}

body.save-page .save-mobile-chip strong {
  min-width: 0;
  color: #1f1a24;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.05;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.save-page .save-mobile-chip span {
  color: #e60023;
}

@media (max-width: 900px) {
  body.save-page .save-page-modern {
    transform: none;
  }

  body.save-page .save-mobile-chip {
    left: 1rem;
    bottom: 1rem;
    min-width: 0;
    max-width: calc(100vw - 2rem);
  }

  body.save-page .save-email-panel h2 {
    font-size: clamp(3.7rem, 13vw, 5.6rem);
  }
}

@media (max-width: 560px) {
  body.save-page main.save-shell-modern {
    align-items: start;
    padding-top: 3rem;
    padding-bottom: 8.5rem;
  }

  body.save-page .save-mobile-ready-pill {
    min-height: 2.8rem;
    font-size: 1rem;
  }

  body.save-page .save-email-input {
    height: 4.6rem;
    grid-template-columns: 2.6rem 1fr;
  }

  body.save-page .save-email-input input,
  body.save-page .save-primary-button,
  body.save-page .save-outline-button {
    font-size: 1.1rem;
  }

  body.save-page .save-primary-button,
  body.save-page .save-outline-button {
    min-height: 4.35rem;
  }

  body.save-page .save-mobile-note {
    font-size: 1rem;
  }

  body.save-page .save-mobile-chip {
    padding: 0.55rem 1rem 0.55rem 0.55rem;
  }

  body.save-page .save-mobile-chip img {
    width: 4.2rem;
    height: 4.2rem;
  }

  body.save-page .save-mobile-chip strong {
    font-size: 1.2rem;
  }
}
