/* ==========================================================================
   NK Product Gallery v1.2
   - Bigger thumbs, centered layout
   - Hard overrides against theme's pink/accent hover on buttons & images
   ========================================================================== */

.nk-gallery,
.nk-gallery *,
.nk-gallery *::before,
.nk-gallery *::after {
  box-sizing: border-box;
}

/* =====================================================================
   BUTTON RESET — defeat Elementor / theme button styles completely
   ===================================================================== */
.nk-gallery button,
.nk-gallery .nk-gallery__arrow,
.nk-gallery .nk-gallery__thumb,
.nk-gallery .nk-gallery__thumbs-arrow {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  background-image: none !important;
  text-shadow: none !important;
}

.nk-gallery button::-moz-focus-inner { border: 0; padding: 0; }

/* =====================================================================
   IMAGE RESET — prevent theme filters / outlines on hover
   ===================================================================== */
.nk-gallery img {
  -webkit-filter: none !important;
  filter: none !important;
  opacity: 1 !important;
  transition: none !important;
  transform: none !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.nk-gallery img:hover,
.nk-gallery img:focus,
.nk-gallery a:hover img,
.nk-gallery button:hover img {
  -webkit-filter: none !important;
  filter: none !important;
  opacity: 1 !important;
  transform: none !important;
  box-shadow: none !important;
}

/* =====================================================================
   ROOT
   ===================================================================== */
.nk-gallery {
  width: 100%;
  position: relative;
  font-family: inherit;
  line-height: 1;
}

.nk-gallery__empty {
  padding: 24px;
  text-align: center;
  color: #888;
  border: 1px dashed #ddd;
  border-radius: 6px;
}

/* =====================================================================
   MAIN IMAGE — height determined by active <img>, not aspect-ratio
   FIXED: slides were position:absolute, which removed them from flow
   and let aspect-ratio be the only source of truth for height —
   Elementor could freeze that value. Now height = natural img height.
   ===================================================================== */
.nk-gallery__main {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 3px;
  background: #f4f4f4;
  line-height: 0;
}

.nk-gallery__slides {
  position: relative;
  width: 100%;
}

.nk-gallery__slide {
  display: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.nk-gallery__slide.is-active {
  display: block;
}

.nk-gallery__main-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 3px;
  user-select: none;
  -webkit-user-drag: none;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: 100%;
}

/* =====================================================================
   MAIN ARROWS (over main image) — bare chevrons, no circle
   ===================================================================== */
.nk-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: #111 !important;
  cursor: pointer;
  transition: transform .2s ease, color .2s ease, opacity .2s ease;
  box-shadow: none !important;
  opacity: 1;
  font-family: inherit;
  line-height: 1;
  text-decoration: none !important;
  outline: none;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.nk-gallery__arrow:hover,
.nk-gallery__arrow:focus,
.nk-gallery__arrow:active {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  transform: translateY(-50%) scale(1.15);
  color: #000 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.nk-gallery__arrow:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.nk-gallery__arrow--prev { left: 8px; }
.nk-gallery__arrow--next { right: 8px; }

.nk-gallery__arrow svg {
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

/* =====================================================================
   COUNTER
   ===================================================================== */
.nk-gallery__counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 5;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  pointer-events: none;
  letter-spacing: 0.3px;
  font-family: inherit;
}

/* =====================================================================
   THUMBNAILS WRAPPER
   Centered layout: [arrow] [thumbs-centered] [arrow]
   ===================================================================== */
.nk-gallery__thumbs-wrap {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  width: 100%;
}

.nk-gallery__thumbs {
  flex: 1 1 auto;
  overflow: hidden;
  position: relative;
  min-width: 0;
}

.nk-gallery__thumbs-track {
  display: flex;
  gap: 12px;
  transition: transform .35s ease;
  will-change: transform;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center; /* center thumbs when fewer than fill width */
}

/* =====================================================================
   SINGLE THUMB — bigger, no border-radius
   ===================================================================== */
.nk-gallery__thumb {
  flex: 1 1 0;
  min-width: 0;
  max-width: 216px;
  aspect-ratio: 1 / 1;
  padding: 0 !important;
  margin: 0 !important;
  border: 2px solid transparent !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-image: none !important;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .2s ease !important;
  position: relative;
  display: block !important;
  line-height: 0;
  box-shadow: none !important;
  transform: none !important;
  outline: none !important;
}

.nk-gallery__thumb:hover {
  border-color: rgba(0, 0, 0, 0.35) !important;
  background: transparent !important;
  background-image: none !important;
  transform: none !important;
  box-shadow: none !important;
}

.nk-gallery__thumb.is-active {
  border-color: #111 !important;
}

.nk-gallery__thumb:focus,
.nk-gallery__thumb:active {
  background: transparent !important;
  background-image: none !important;
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.nk-gallery__thumb:focus-visible {
  outline: 2px solid #111 !important;
  outline-offset: 2px;
}

.nk-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
  user-select: none;
  -webkit-user-drag: none;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: 100%;
}

/* =====================================================================
   THUMBS SIDE ARROWS — bare chevrons, no circle
   ===================================================================== */
.nk-gallery__thumbs-arrow {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  padding: 0 !important;
  margin: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: #111 !important;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: color .2s ease, transform .2s ease;
  font-family: inherit;
  line-height: 1;
  text-decoration: none !important;
  outline: none;
  box-shadow: none !important;
}

.nk-gallery__thumbs-arrow:hover,
.nk-gallery__thumbs-arrow:focus,
.nk-gallery__thumbs-arrow:active {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  color: #000 !important;
  text-decoration: none !important;
  transform: scale(1.15);
  box-shadow: none !important;
}

.nk-gallery__thumbs-arrow:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.nk-gallery__thumbs-arrow svg {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

.nk-gallery__thumbs-arrow[disabled] {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

/* =====================================================================
   ACCESSIBILITY
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  .nk-gallery__slide,
  .nk-gallery__thumbs-track,
  .nk-gallery__arrow,
  .nk-gallery__thumb {
    transition: none !important;
  }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .nk-gallery__arrow { width: 40px; height: 40px; }
  .nk-gallery__arrow svg { width: 28px; height: 28px; }
  .nk-gallery__thumb { max-width: 180px; }
}

@media (max-width: 767px) {
  .nk-gallery__thumbs-wrap { gap: 6px; margin-top: 8px; }
  .nk-gallery__thumbs-track { gap: 6px; }
  .nk-gallery__arrow { width: 36px; height: 36px; }
  .nk-gallery__arrow svg { width: 24px; height: 24px; }
  .nk-gallery__thumbs-arrow { width: 30px; height: 30px; }
  .nk-gallery__thumbs-arrow svg { width: 18px; height: 18px; }
  .nk-gallery__thumb { max-width: none; }
}


/* ==========================================================================
   NK LOVE BADGE
   ========================================================================== */
.nk-love-badge-wrap {
  display: flex;
  width: 100%;
  justify-content: flex-start;
}
.nk-love-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #6AA2D9;
  color: #ffffff;
  padding: 4px 10px 4px 12px;
  border-radius: 30px;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  max-width: 100%;
}
.nk-love-badge * { box-sizing: border-box; }
.nk-love-badge__star {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}
.nk-love-badge__text { display: inline-block; font: inherit; color: inherit; }
.nk-love-badge__avatars {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nk-love-badge__avatar {
  width: 22px; height: 22px;
  border-radius: 50% !important;
  object-fit: cover;
  border: 2px solid #6AA2D9;
  display: block;
  background: #fff;
  margin: 0; padding: 0;
  filter: none !important;
  opacity: 1 !important;
  transition: none !important;
  transform: none !important;
  box-shadow: none !important;
}
.nk-love-badge__avatar + .nk-love-badge__avatar { margin-left: -8px; }
@media (max-width: 480px) {
  .nk-love-badge {
    font-size: 11px;
    padding: 4px 8px 4px 10px;
    letter-spacing: 0.3px;
    white-space: normal;
  }
}


/* ==========================================================================
   NK PRICING OPTIONS
   ========================================================================== */
.nk-pricing {
  font-family: inherit;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.nk-pricing *, .nk-pricing *::before, .nk-pricing *::after { box-sizing: border-box; }

.nk-pricing__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.nk-pricing__divider {
  flex: 1 1 auto;
  height: 2px;
  background-color: #6AA2D9;
  min-width: 20px;
}
.nk-pricing__title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #111;
  white-space: nowrap;
  text-transform: uppercase;
  flex-shrink: 0;
  line-height: 1.3;
}

.nk-pricing__option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border: 2px solid #d8e7f4;
  border-radius: 14px;
  background-color: #ffffff;
  cursor: pointer;
  position: relative;
  margin: 0;
  transition: border-color .2s ease, background-color .2s ease;
}
.nk-pricing__option + .nk-pricing__option { margin-top: 14px; }
.nk-pricing__option.is-active {
  background-color: #eaf2fa;
  border-color: #6AA2D9;
}

.nk-pricing__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px; height: 1px;
}
.nk-pricing__radio-visual {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  border: 2px solid #b8d0e6;
  border-radius: 50% !important;
  background-color: #ffffff !important;
  position: relative;
  transition: border-color .2s ease;
  display: inline-block;
}
.nk-pricing__radio:checked + .nk-pricing__radio-visual { border-color: #6AA2D9; }
.nk-pricing__radio:checked + .nk-pricing__radio-visual::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background-color: #6AA2D9;
  transform: translate(-50%, -50%);
}

.nk-pricing__info { flex: 1 1 auto; min-width: 0; }
.nk-pricing__name {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin: 0 0 4px 0;
}
.nk-pricing__save {
  font-size: 14px;
  color: #444;
  line-height: 1.3;
  margin: 0;
}

.nk-pricing__prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
  text-align: right;
}
.nk-pricing__price {
  font-size: 20px;
  font-weight: 700;
  color: #6AA2D9;
  line-height: 1.2;
  white-space: nowrap;
}
.nk-pricing__price-old {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
  line-height: 1.2;
  white-space: nowrap;
}

.nk-pricing__badge {
  position: absolute;
  top: -12px; right: 16px;
  background-color: #6AA2D9;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 6px;
  transform: rotate(-3deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  line-height: 1.3;
  white-space: nowrap;
  pointer-events: none;
}

.nk-pricing__btn {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 18px 24px;
  background-color: #6AA2D9;
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none !important;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color .2s ease, transform .1s ease;
  font-family: inherit;
  line-height: 1.2;
  box-sizing: border-box;
}
.nk-pricing__btn:hover,
.nk-pricing__btn:focus {
  background-color: #5791C8;
  color: #ffffff !important;
  text-decoration: none !important;
}
.nk-pricing__btn:active { transform: scale(0.98); }
.nk-pricing__btn:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

@media (max-width: 600px) {
  .nk-pricing__option { padding: 14px 16px; gap: 10px; }
  .nk-pricing__name { font-size: 14px; }
  .nk-pricing__save { font-size: 13px; }
  .nk-pricing__price { font-size: 18px; }
  .nk-pricing__price-old { font-size: 14px; }
  .nk-pricing__title { font-size: 11px; letter-spacing: 0.4px; white-space: normal; text-align: center; }
  .nk-pricing__badge { font-size: 11px; padding: 3px 10px; right: 10px; top: -10px; }
  .nk-pricing__btn { font-size: 16px; padding: 16px 20px; }
}


/* ==========================================================================
   NK LEAD MODAL — aggressive reset against Elementor/theme
   ========================================================================== */

/* Nuclear reset for everything inside the modal */
.nk-modal,
.nk-modal *,
.nk-modal *::before,
.nk-modal *::after {
  box-sizing: border-box !important;
}

.nk-modal {
  position: fixed !important;
  inset: 0 !important;
  top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 99999 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  margin: 0 !important;
  background: rgba(0, 0, 0, 0.55) !important;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .25s ease;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif !important;
}
.nk-modal.is-open {
  display: flex !important;
  opacity: 1 !important;
}

.nk-modal__box {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 16px !important;
  padding: 40px 32px 28px !important;
  margin: 0 !important;
  max-width: 440px !important;
  width: 100% !important;
  position: relative !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
  transform: scale(0.95);
  transition: transform .25s ease;
  font-family: inherit !important;
  color: #111 !important;
  text-align: left;
}
.nk-modal.is-open .nk-modal__box { transform: scale(1); }

/* CLOSE button — remove ALL theme/Elementor button styling */
.nk-modal__close {
  all: unset !important;
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  width: 34px !important;
  height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: #888 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  text-shadow: none !important;
  transition: background-color .2s ease, color .2s ease !important;
  box-sizing: border-box !important;
  font-family: inherit !important;
}
.nk-modal__close:hover,
.nk-modal__close:focus,
.nk-modal__close:active {
  background: #f4f4f4 !important;
  background-color: #f4f4f4 !important;
  background-image: none !important;
  color: #111 !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  transform: none !important;
}
.nk-modal__close svg {
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  stroke: currentColor !important;
  fill: none !important;
  flex-shrink: 0 !important;
}

.nk-modal__title {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #111 !important;
  margin: 0 0 8px 0 !important;
  padding: 0 !important;
  line-height: 1.25 !important;
  text-align: center !important;
  font-family: inherit !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.nk-modal__subtitle {
  font-size: 14px !important;
  color: #555 !important;
  margin: 0 0 22px 0 !important;
  padding: 0 !important;
  line-height: 1.45 !important;
  text-align: center !important;
  font-family: inherit !important;
  font-weight: 400 !important;
}

.nk-modal__form {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

/* INPUT — nuke theme styles */
.nk-modal__input {
  width: 100% !important;
  height: 54px !important;
  min-height: 54px !important;
  max-height: 54px !important;
  padding: 0 18px !important;
  margin: 0 !important;
  border: 1.5px solid #d4d4d4 !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  color: #111 !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  font-family: inherit !important;
  line-height: 1.2 !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
  display: block !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  text-shadow: none !important;
}
.nk-modal__input::placeholder {
  color: #999 !important;
  opacity: 1 !important;
  font-size: 15px !important;
  font-weight: 400 !important;
}
.nk-modal__input:hover {
  border-color: #aaa !important;
}
.nk-modal__input:focus,
.nk-modal__input:focus-visible {
  border-color: #6AA2D9 !important;
  box-shadow: 0 0 0 3px rgba(106, 162, 217, 0.15) !important;
  outline: none !important;
}

.nk-modal__hp {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  width: 0 !important;
  visibility: hidden !important;
}

/* SUBMIT button — crucial styling override */
.nk-modal__submit {
  all: unset !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 54px !important;
  min-height: 54px !important;
  padding: 0 20px !important;
  margin: 0 !important;
  background: #6AA2D9 !important;
  background-color: #6AA2D9 !important;
  background-image: none !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  text-shadow: none !important;
  font-family: inherit !important;
  line-height: 1 !important;
  border: 0 !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  box-shadow: none !important;
  outline: none !important;
  transition: background-color .2s ease, transform .1s ease !important;
  text-align: center !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.nk-modal__submit:hover,
.nk-modal__submit:focus {
  background: #5791C8 !important;
  background-color: #5791C8 !important;
  background-image: none !important;
  color: #ffffff !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}
.nk-modal__submit:active {
  transform: scale(0.98) !important;
  background-color: #4A82B8 !important;
}
.nk-modal__submit[disabled] {
  opacity: 0.6 !important;
  cursor: default !important;
  pointer-events: none !important;
}

.nk-modal__footer {
  margin: 14px 0 0 0 !important;
  padding: 0 !important;
  text-align: center !important;
  font-size: 11px !important;
  color: #888 !important;
  line-height: 1.4 !important;
  font-family: inherit !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
}

.nk-modal__msg {
  margin: 12px 0 0 0 !important;
  padding: 12px 14px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  text-align: center !important;
  display: none !important;
  font-family: inherit !important;
  line-height: 1.4 !important;
  border: 0 !important;
}
.nk-modal__msg.is-error {
  background: #fde8e8 !important;
  background-color: #fde8e8 !important;
  color: #b91c1c !important;
  display: block !important;
}
.nk-modal__msg.is-success {
  background: #dcfce7 !important;
  background-color: #dcfce7 !important;
  color: #166534 !important;
  display: block !important;
}

.nk-modal__spinner {
  display: inline-block !important;
  width: 18px !important;
  height: 18px !important;
  border: 2px solid rgba(255,255,255,0.4) !important;
  border-top-color: #fff !important;
  border-radius: 50% !important;
  animation: nk-spin .7s linear infinite !important;
  margin-right: 8px !important;
  vertical-align: middle !important;
  background: transparent !important;
  flex-shrink: 0 !important;
}
@keyframes nk-spin { to { transform: rotate(360deg); } }

@media (max-width: 480px) {
  .nk-modal__box { padding: 32px 22px 22px !important; }
  .nk-modal__title { font-size: 20px !important; }
  .nk-modal__input, .nk-modal__submit { height: 50px !important; min-height: 50px !important; }
}

/* ==========================================================================
   NK THANK YOU — order completion messages
   ========================================================================== */
.nk-thankyou {
  max-width: 600px;
  margin: 40px auto;
  padding: 40px 32px;
  text-align: center;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  border-radius: 16px;
  background: #ffffff;
}
.nk-thankyou__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 36px;
  font-weight: 700;
  margin: 0 auto 20px;
  color: #fff;
  line-height: 1;
}
.nk-thankyou--success .nk-thankyou__icon {
  background: #22c55e;
}
.nk-thankyou--warning .nk-thankyou__icon {
  background: #f59e0b;
}
.nk-thankyou__title {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin: 0 0 16px 0;
  line-height: 1.25;
}
.nk-thankyou__text {
  font-size: 17px;
  color: #444;
  line-height: 1.5;
  margin: 0 0 14px 0;
}
.nk-thankyou__text strong {
  color: #111;
  font-weight: 600;
}
.nk-thankyou__hint {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
  margin: 0;
}
.nk-thankyou a {
  color: #6AA2D9;
  text-decoration: underline;
}
.nk-thankyou--generic {
  color: #555;
}

@media (max-width: 500px) {
  .nk-thankyou { padding: 32px 20px; }
  .nk-thankyou__title { font-size: 22px; }
  .nk-thankyou__text { font-size: 15px; }
}
