/* Front-end */

.sammc-wrap {
  position: relative;
  --sammc-w: 440px;
  --sammc-h: 660px;
  width: min(100%, var(--sammc-w));
  margin: 0 auto;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  display: flow-root;
  box-sizing: border-box;
  height: auto;
  overflow: visible;
}

/*
 * Keep the card footer in normal document flow. Some page builders and themes
 * reuse generic card/action rules that make these elements absolute or floated,
 * which makes the following section overlap the caption and action buttons.
 */
.sammc-wrap > .sammc-card {
  position: relative !important;
  display: block !important;
  float: none !important;
  clear: both;
  height: auto !important;
}

.sammc-wrap > .sammc-card-footer {
  position: relative !important;
  display: block !important;
  inset: auto !important;
  float: none !important;
  clear: both;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  box-sizing: border-box;
  transform: none !important;
  overflow: visible !important;
  contain: none !important;
}

.sammc-card-footer > .sammc-help,
.sammc-card-footer > .sammc-cta-message,
.sammc-card-footer > .sammc-card-actions {
  position: relative !important;
  inset: auto !important;
  float: none !important;
  clear: both;
  width: 100%;
  box-sizing: border-box;
  transform: none !important;
}

.sammc-tabs {
  position: absolute;
  z-index: 60;
  left: 14px;
  bottom: 20px;
  transform: translateX(0);
  width: max-content;
  max-width: calc(100% - 24px);
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding: 8px 10px;
  box-sizing: border-box;
  pointer-events: auto;
  user-select: none;
  -webkit-user-select: none;
}

.sammc-tabs.is-dragging {
  cursor: grabbing;
}

.sammc-tabs-drag,
.sammc-wrap button.sammc-tabs-drag {
  all: unset;
  box-sizing: border-box;
  width: 30px;
  min-width: 30px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 17, 17, .48);
  color: rgba(255, 255, 255, .9);
  cursor: grab;
  touch-action: none;
  line-height: 1;
  font-size: 14px;
  letter-spacing: -1px;
}

.sammc-tabs.is-dragging .sammc-tabs-drag {
  cursor: grabbing;
}

.sammc-tabs-drag:hover {
  background: rgba(17, 17, 17, .66);
}

.sammc-tabs-drag span {
  pointer-events: none;
  transform: translateY(-1px);
}

.sammc-wrap button.sammc-tab {
  all: unset;
  box-sizing: border-box;
}

.sammc-tab {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(17, 17, 17, .66);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .16);
}

.sammc-tab span {
  display: inline-block;
}

.sammc-tab-icon,
.sammc-wrap button.sammc-tab-icon {
  display: inline-block !important;
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  min-height: 46px !important;
  flex: 0 0 46px !important;
  padding: 0 !important;
  border-radius: 999px;
  border: 0 solid rgba(62, 62, 62, 0.72);
  background-color: rgba(255, 255, 255, 0.66);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-indent: -9999px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .16);
  cursor: pointer;
}

.sammc-tab-icon span {
  display: block;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}



@media (max-width: 640px) {
  .sammc-tabs {
    flex-wrap: wrap;
  }

  .sammc-wrap.sammc-tap-open .sammc-tabs {
    display: none !important;
  }

  .sammc-wrap {
    width: min(100%, 440px);
  }

  .sammc-wrap .sammc-stage,
  .sammc-wrap.sammc-orient-landscape .sammc-stage {
    aspect-ratio: 2 / 3;
    max-height: 660px;
  }
}

.sammc-tab:hover {
  background: rgba(17, 17, 17, .82);
}

.sammc-tab.is-active,
.sammc-tab.sammc-tab-close {
  background: #111;
  border-color: #111;
  color: #fff;
}

.sammc-card {
  position: relative;
  z-index: 1;
  width: min(100%, var(--sammc-w));
  height: auto;
  outline: none;
  margin: 0 auto;
}

.sammc-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  max-height: var(--sammc-h);
  transform-style: preserve-3d;
  transition: none;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
  background: #ffffff;
}

.sammc-face {
  position: absolute;
  inset: 0;
  z-index: 1;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
}

.sammc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sammc-missing {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .08) 10px, rgba(255, 255, 255, .03) 10px, rgba(255, 255, 255, .03) 20px);
}

.sammc-yap {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  pointer-events: auto;
}

.sammc-yap-hidden {
  display: none;
}

.sammc-yap-inner {
  width: 100%;
  height: 100%;
  background: transparent;
}

.sammc-yap-close,
.sammc-wrap .sammc-yap-close,
.elementor .sammc-wrap .sammc-yap-close,
.elementor-kit-1196 .sammc-wrap .sammc-yap-close {
  all: unset;
  box-sizing: border-box;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #111 !important;
  color: #fff !important;
  text-decoration: none !important;
  cursor: pointer !important;
  z-index: 20;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .22);
  line-height: 1 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  appearance: none;
  -webkit-appearance: none;
}

.sammc-yap-close:hover,
.sammc-wrap .sammc-yap-close:hover,
.elementor .sammc-wrap .sammc-yap-close:hover,
.elementor-kit-1196 .sammc-wrap .sammc-yap-close:hover {
  background: #000 !important;
  color: #fff !important;
  border: 0 !important;
}

.sammc-yap-close:focus,
.sammc-wrap .sammc-yap-close:focus,
.elementor .sammc-wrap .sammc-yap-close:focus {
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .28), 0 2px 10px rgba(0, 0, 0, .22) !important;
}

.sammc-yap-close span {
  display: block;
  transform: translateY(-1px);
  pointer-events: none;
}

.sammc-help {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  color: rgba(0, 0, 0, .6);
}

.sammc-cta-message {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(0, 0, 0, .78);
}

.sammc-cta-message .sammc-cta-link {
  font-weight: 600;
}

/* Actions */
.sammc-card-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sammc-card-actions-overlay {
  position: static;
  z-index: auto;
  left: auto;
  bottom: auto;
  transform: none;
  width: auto;
  margin-top: 10px;
  pointer-events: auto;
}

.sammc-card-actions-overlay>* {
  pointer-events: auto;
}

.sammc-card-actions .sammc-reply-button,.sammc-card-actions .sammc-relay-button { display:inline-flex; align-items:center; justify-content:center; border:0; border-radius:999px; padding:10px 14px; color:#fff; font:inherit; font-size:13px; line-height:1; text-decoration:none; cursor:pointer; }
.sammc-card-actions .sammc-reply-button { background:var(--sammc-reply-button-bg,#3f3f3f); }
.sammc-card-actions .sammc-relay-button { background:#686868; }
.sammc-landing-copy { position:absolute; inset:0; z-index:50; display:grid; place-items:center; box-sizing:border-box; padding:7px; color:#111; background:#fff; opacity:1; visibility:visible; transition:opacity .4s ease,visibility .4s ease; border-radius:inherit; }
.sammc-landing-copy.is-dismissed { opacity:0; visibility:hidden; pointer-events:none; }
.sammc-landing-copy-content { max-width:90%; text-align:center; }
.sammc-landing-copy-content p { margin:0; font-size:clamp(20px,5vw,28px); line-height:1.25; font-weight:600; }
.sammc-landing-copy-content button { margin-top:18px; padding:7px 17px; border:1px solid #bbb; border-radius:999px; color:#222; background:#fff; cursor:pointer; }
.sammc-reply-layer { position:absolute; z-index:35; display:block; box-sizing:border-box; left:0; right:0; top:50%; width:100%; height:min(560px,100%); transform:translateY(-50%); padding:40px 33px 7px; overflow:auto; background:var(--sammc-reply-bg,rgba(255,255,255,.92)); }
.sammc-reply-layer.sammc-yap-hidden { display:none; }
.sammc-reply-close { position:absolute; top:8px; right:10px; z-index:2; width:30px; height:30px; border:0; border-radius:50%; color:#222; background:rgba(255,255,255,.85); font-size:24px; line-height:28px; cursor:pointer; }
.sammc-reply-form { width:100%; min-height:100%; overflow:auto; }

.sammc-send-to-me,
.sammc-print-order,
.sammc-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .96);
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  color: rgba(0, 0, 0, .88);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .14);
}

.sammc-send-to-me:hover,
.sammc-print-order:hover,
.sammc-read-more:hover {
  border-color: rgba(0, 0, 0, .25);
}

/* For HTML game iframe */
.sammc-yap-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: transparent;
}

/* Orientation */
.sammc-orient-landscape .sammc-stage {
  aspect-ratio: 3 / 2;
}

/* Face visibility (fake flip: swap at halfway) */
.sammc-show-front .sammc-front {
  display: block;
}

.sammc-show-front .sammc-back {
  display: none;
}

.sammc-show-back .sammc-front {
  display: none;
}

.sammc-show-back .sammc-back {
  display: block;
}

/* Hide tabs option */
.sammc-tabs-hidden .sammc-tabs {
  display: none;
}

/* =========================
   Send To Me modal (popup)
========================= */
#sammc-ledger-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
}

#sammc-ledger-modal.is-open {
  display: block;
}

#sammc-ledger-modal .sammc-ledger-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

#sammc-ledger-modal .sammc-ledger-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, calc(100vw - 24px));
  height: min(520px, calc(100vh - 24px));
  background: #0b0b0d;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}

#sammc-ledger-modal .sammc-ledger-x {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(20, 20, 23, .9);
  color: #fff;
  cursor: pointer;
  z-index: 2;
}

#sammc-ledger-modal .sammc-ledger-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Saved state */
.sammc-send-to-me.is-saved {
  opacity: .95;
}

@media (max-width: 640px) {

  .sammc-send-to-me,
  .sammc-print-order,
  .sammc-read-more {
    font-size: 12px;
    padding: 9px 12px;
  }
}

.sammc-send-to-me.is-sent {
  opacity: .55;
  pointer-events: auto;
}

.sammc-send-to-me.is-sent::after {
  content: " ✓";
}

/* Ledger logout (this browser) */
button#sammc-ledger-logout-fab,
button.sammc-ledger-logout-fab {
  all: unset;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999999;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: #111;
  font: inherit;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

button#sammc-ledger-logout-fab:hover,
button.sammc-ledger-logout-fab:hover {
  background: #f6f6f6;
  color: #FDB63E;
}

/* Mailbox preview / embed mode */
html.sammc-mailbox-preview,
body.sammc-mailbox-preview {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

body.sammc-mailbox-preview #wpadminbar,
body.sammc-mailbox-preview #sammc-mailbox-dock,
body.sammc-mailbox-preview .sammc-ledger-logout-fab,
body.sammc-mailbox-preview #sammc-ledger-logout-fab,
body.sammc-mailbox-preview header,
body.sammc-mailbox-preview footer,
body.sammc-mailbox-preview .site-header,
body.sammc-mailbox-preview .site-footer,
body.sammc-mailbox-preview .entry-header,
body.sammc-mailbox-preview .entry-title,
body.sammc-mailbox-preview .page-header,
body.sammc-mailbox-preview .page-title,
body.sammc-mailbox-preview .post-title,
body.sammc-mailbox-preview .elementor-location-header,
body.sammc-mailbox-preview .elementor-location-footer,
body.sammc-mailbox-preview .elementor-widget-theme-post-title,
body.sammc-mailbox-preview .elementor-widget-post-title,
body.sammc-mailbox-preview .sam-ledger-wrap,
body.sammc-mailbox-preview .sam-ledger-root,
body.sammc-mailbox-preview .sammc-card-actions,
body.sammc-mailbox-preview .sammc-mailbox-dock-btn,
body.sammc-mailbox-preview [data-mailbox-open],
body.sammc-mailbox-preview [data-mailbox-state] {
  display: none !important;
}

body.sammc-mailbox-preview .site,
body.sammc-mailbox-preview .site-main,
body.sammc-mailbox-preview .site-content,
body.sammc-mailbox-preview .content-area,
body.sammc-mailbox-preview .entry-content,
body.sammc-mailbox-preview .post,
body.sammc-mailbox-preview article,
body.sammc-mailbox-preview .elementor,
body.sammc-mailbox-preview .elementor-section,
body.sammc-mailbox-preview .elementor-container,
body.sammc-mailbox-preview .elementor-column,
body.sammc-mailbox-preview .elementor-widget-wrap,
body.sammc-mailbox-preview .elementor-widget-shortcode,
body.sammc-mailbox-preview .elementor-shortcode {
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

body.sammc-mailbox-preview #sammc-mailbox-preview-root {
  width: 100% !important;
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 16px 0 20px !important;
  box-sizing: border-box !important;
  background: transparent !important;
}

body.sammc-mailbox-preview #sammc-mailbox-preview-root .sammc-wrap {
  --sammc-w: clamp(440px, 64vw, 560px);
  width: min(94vw, var(--sammc-w)) !important;
  max-width: var(--sammc-w) !important;
  margin: 0 auto !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  zoom: 1 !important;
}

body.sammc-mailbox-preview #sammc-mailbox-preview-root .sammc-card,
body.sammc-mailbox-preview #sammc-mailbox-preview-root .sammc-stage,
body.sammc-mailbox-preview #sammc-mailbox-preview-root .sammc-tabs {
  display: block !important;
}

body.sammc-mailbox-preview #sammc-mailbox-preview-root .sammc-card {
  box-shadow: none !important;
}

body.sammc-mailbox-preview #sammc-mailbox-preview-root .sammc-help {
  text-align: center !important;
}

body.sammc-mailbox-preview,
body.sammc-mailbox-preview html {
  overflow: auto !important;
}

body.sammc-mailbox-preview #sammc-mailbox-preview-root .sammc-card,
body.sammc-mailbox-preview #sammc-mailbox-preview-root .sammc-stage {
  width: 100% !important;
  max-width: none !important;
}

.sammc-help .sammc-help-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.sammc-help .sammc-help-link:hover,
.sammc-help .sammc-help-link:focus {
  opacity: .8;
}


.sammc-lottie-shell {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.sammc-lottie-stage {
  width: 100%;
  height: 100%;
}

.sammc-lottie-toolbar {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 160px;
  display: grid;
  gap: 8px;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition: none;
  z-index: 15;
}

.sammc-lottie-controls,
.sammc-lottie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.sammc-lottie-btn,
.sammc-lottie-select,
.sammc-lottie-time {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(17, 17, 17, .8);
  background: rgba(255, 255, 255, .92);
  color: #111;
  border-radius: 999px;
  padding: 8px 12px;
  line-height: 1;
  font-size: 13px;
  box-sizing: border-box;
}

.sammc-lottie-btn {
  cursor: pointer;
}

.sammc-lottie-btn:hover,
.sammc-lottie-btn:focus,
.sammc-lottie-select:hover,
.sammc-lottie-select:focus {
  background-color: #fff;
}

.sammc-lottie-btn.is-icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background-color: rgba(255, 255, 255, 0.9);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
  text-indent: -9999px;
  overflow: hidden;
}

.sammc-lottie-btn.is-play {
  background-image: url('img/sam_play.svg');
}

.sammc-lottie-btn.is-pause {
  background-image: url('img/sam_pause.svg');
}

.sammc-lottie-btn.is-stop {
  background-image: url('img/sam_stop.svg');
}

.sammc-lottie-btn.is-reset {
  background-image: url('img/sam_reset.svg');
}

.sammc-lottie-seek {
  width: min(120px, 42vw);
}

.sammc-lottie-time {
  font-size: 12px;
  border-color: rgba(17, 17, 17, .15);
}

.sammc-tab.is-locked {
  position: relative;
}

.sammc-tab-lock {
  position: absolute;
  right: 8px;
  bottom: 6px;
  font-size: 12px;
  line-height: 1;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .35));
}

.sammc-unlock-modal.is-hidden {
  display: none;
}

.sammc-unlock-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
}

.sammc-unlock-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.sammc-unlock-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 420px);
  background: #fff;
  border-radius: 16px;
  padding: 22px 18px 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
}

.sammc-unlock-x {
  position: absolute;
  right: 10px;
  top: 10px;
  border: 0;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.sammc-unlock-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sammc-unlock-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.sammc-unlock-form {
  display: flex;
  gap: 8px;
}

.sammc-unlock-input {
  flex: 1;
  min-width: 0;
  height: 42px;
  border: 1px solid #ccd0d4;
  border-radius: 10px;
  padding: 0 12px;
}

.sammc-unlock-submit {
  height: 42px;
  border: 0;
  border-radius: 10px;
  padding: 0 14px;
  background: #111;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
}

.sammc-unlock-message {
  min-height: 20px;
  margin-top: 10px;
  font-size: 13px;
}

.sammc-publisher {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.4;
  color: #777;
  text-align: center;
}

.sammc-publisher a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sammc-publisher span {
  font-weight: 500;
}

@media (max-width: 640px) {
  body.sammc-mailbox-preview #sammc-mailbox-preview-root .sammc-wrap {
    --sammc-w: 440px;
    width: min(94vw, 440px) !important;
    max-width: 440px !important;
  }

  body.sammc-mailbox-preview #sammc-mailbox-preview-root .sammc-wrap .sammc-stage {
    aspect-ratio: 2 / 3 !important;
    max-height: 660px !important;
  }

  body.sammc-mailbox-preview #sammc-mailbox-preview-root .sammc-wrap.sammc-tap-open .sammc-tabs {
    display: none !important;
  }
}
