.nupx-badge {
  background: linear-gradient(135deg, #a8e063, #56ab2f);
  color: #fff;
  border-radius: 999px;
  padding: 6px 16px;
  font-weight: 700;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nupr-promo-post {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  width: 100%;
  box-sizing: border-box;
}

.nupr-left-column {
  flex: 0 0 38%;
  min-width: 220px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #ffffff;
  border-right: 1px solid #edf0f4;
  position: relative;
  text-align: center;
  box-sizing: border-box;
  margin: 0;
}

.nupr-promo-post > .ipsColumn_fluid {
  flex: 1 1 auto;
  min-width: 320px;
  box-sizing: border-box;
}

.nupr-product-icons-top,
.nupr-product-icons-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.nupr-product-icons-top {
  margin-bottom: 20px;
}

.nupr-product-icons-bottom {
  margin-top: 20px;
}

.nupr-product-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.nupr-product-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.nupr-product-icon-text {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
}

.nupr-product-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  cursor: zoom-in;
  width: 100%;
}

.nupr-product-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.nupr-product-wrapper:hover .nupr-product-image {
  transform: scale(1.05);
}

.nupr-product-badge {
  position: absolute;
  right: 5px;
  top: 5px;
  background: #ff6f00;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nupr-promo-post .ipsComment_content {
  padding-top: 40px !important;
}

.nupr-promo-kicker {
  font-size: 12px;
  color: #0f766e;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  margin-top: -15px;
}

.nupr-promo-title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
  color: #0f172a;
  font-weight: 700;
  word-break: break-word;
  padding-right: 2px;
}

.nupr-promo-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s;
}

.nupr-promo-title a:hover {
  color: #0079d3;
}

.nupr-promo-subtitle {
  font-size: 14px;
  line-height: 1.4;
  color: #64748b;
  margin: 8px 0 14px;
  font-weight: 400;
}

.cPost_contentWrap .nupx-block {
  border: 1px solid var(--ipsBorderColor, rgba(0, 0, 0, 0.12)) !important;
  border-radius: 10px !important;
  padding: 16px 18px !important;
  margin: 12px 0 !important;
  background: #fff !important;
  line-height: 1.5;
}

.nupr-promo-list {
  margin: 10px 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  color: #334155;
  font-size: 14px;
}

.nupr-promo-list li {
  position: relative;
  padding-left: 18px;
}

.nupr-promo-list li:before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 900;
}

.nupr-tooltip {
  position: relative;
  color: #b91c1c;
  font-weight: 600;
  cursor: help;
  text-decoration: underline dotted rgba(185, 28, 28, 0.45);
  text-underline-offset: 2px;
}

.nupr-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.95);
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.35);
  z-index: 50;
}

.nupr-tooltip::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(15, 23, 42, 0.95) transparent transparent transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 49;
}

.nupr-tooltip:hover::after,
.nupr-tooltip:hover::before,
.nupr-tooltip:focus-visible::after,
.nupr-tooltip:focus-visible::before,
.nupr-tooltip:active::after,
.nupr-tooltip:active::before {
  opacity: 1;
  visibility: visible;
}

.nupr-promo-list a {
  color: #334155;
  text-decoration: none;
  transition: color 0.2s;
}

.nupr-promo-list a:hover {
  color: #0079d3;
}

.nupr-highlight-mgvp {
  color: #fff;
  background: #c2185b;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nupr-highlight-mgvp:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(194, 24, 91, 0.4);
}

.nupr-promo-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: nowrap;
}

.nupr-promo-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  border-radius: 12px;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.nupr-promo-btn-primary {
  background: #e53935;
  color: #fff !important;
  box-shadow: 0 8px 16px rgba(229, 57, 53, 0.3);
  border: 0;
}

.nupr-promo-btn-primary:hover {
  background: #c62828;
  transform: translateY(-2px);
}

.nupr-promo-btn-secondary {
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #1a2533 !important;
  background: #fff;
}

.nupr-promo-btn-secondary:hover {
  background: #f9fafb;
  transform: translateY(-2px);
}

.nupr-promo-trust {
  margin-top: 12px;
  font-size: 12px;
  color: #6b7280;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nupr-promo-trust-item {
  display: inline-block;
}

.nupr-promo-trust-separator {
  color: #1f2937;
  font-weight: 900;
  font-size: 16px;
  margin: 0 2px;
  line-height: 1;
}

.nupr-promo-timer {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nupr-promo-timer__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  line-height: 1.5;
}

.nupr-promo-timer__text > span {
  white-space: nowrap;
}

.nupr-promo-stock-text {
  font-size: 13px;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  white-space: nowrap;
}

.nupr-timer-date {
  text-decoration: underline;
  text-decoration-color: #e53935;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.flip-clock-container {
  --flip-bg-color: #2d3748;
  --flip-text-color: #fff;
  --flip-dots-color: #1f2937;
  display: none;
}

.flip-clock-container.active {
  display: flex;
}

html {
  font-size: 16px;
  color-scheme: light;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
  background: transparent;
  color: #0f172a;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.ipsImage {
  max-width: 100%;
  height: auto;
  display: block;
}

.ipsResponsive_hidePhone {
  display: block;
}

@media (max-width: 767px) {
  .ipsResponsive_hidePhone {
    display: none !important;
  }
}

.ipsColumns {
  display: flex;
  gap: 0;
}

.ipsColumn {
  flex: 1 1 auto;
}

.ipsColumn_medium {
  flex: 0 0 auto;
}

@media (max-width: 767px) {
  .ipsColumns_collapsePhone {
    flex-direction: column;
  }

  .ipsColumns_collapsePhone > * {
    width: 100% !important;
  }
}

.cPost {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.ipsBox {
  border: 0;
  box-shadow: none;
}

.nupt-promo-root,
.nupr-promo-post {
  width: 100%;
}

@media (max-width: 767px) {
  .nupr-promo-timer {
    flex-direction: column;
    align-items: stretch;
  }

  .nupr-promo-timer__text {
    align-items: center;
  }

  .nupr-product-icon {
    width: 40px;
    height: 40px;
  }

  .nupr-product-icons-top,
  .nupr-product-icons-bottom {
    gap: 25px;
    justify-content: center !important;
    width: 100%;
  }

  .nupr-product-icon-wrapper {
    max-width: none;
    min-width: 90px;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .nupr-product-icon-text {
    font-size: 12px;
    white-space: nowrap;
    margin: 0 !important;
  }

  .nupr-promo-post .nupr-product-wrapper {
    max-width: 85% !important;
    margin: 20px auto !important;
    display: block !important;
    position: relative !important;
  }

  .nupr-promo-post .nupr-product-image {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .nupr-promo-post .nupr-product-badge {
    font-size: 11px !important;
    padding: 4px 10px !important;
    right: 5px !important;
    top: 5px !important;
  }

  .nupr-promo-title {
    font-size: 18px;
    white-space: normal;
  }

  .nupr-promo-subtitle {
    font-size: 12px;
  }

  .nupr-promo-actions {
    flex-direction: column;
    gap: 10px;
  }

  .nupr-promo-btn {
    width: 100%;
    padding: 14px 20px;
  }

  .nupr-promo-post {
    overflow-x: hidden;
  }

  .nupr-promo-post .ipsResponsive_hidePhone {
    display: block !important;
    padding-top: 8px;
    padding-right: 8px;
  }

  .nupr-left-column {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
  }

  .nupr-promo-post {
    font-size: 15px;
  }

  .nupr-promo-post .nupr-promo-list {
    font-size: 15px;
  }

  .nupr-promo-post .nupr-promo-trust {
    font-size: 12px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 8px 8px;
    justify-items: center;
    align-items: center;
  }

  .nupr-promo-trust-item {
    white-space: nowrap;
  }

  .nupr-promo-trust-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .nupr-promo-trust-separator:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    display: block;
  }

  .nupr-promo-trust-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }

  .nupr-promo-trust-separator:nth-child(4) {
    display: none;
  }

  .nupr-promo-trust-item:nth-child(5) {
    grid-column: 1;
    grid-row: 2;
  }

  .nupr-promo-trust-separator:nth-child(6) {
    grid-column: 2;
    grid-row: 2;
    display: block;
  }

  .nupr-promo-trust-item:nth-child(7) {
    grid-column: 3;
    grid-row: 2;
  }

  .nupr-promo-trust-separator:nth-child(8) {
    display: none;
  }

  .nupr-promo-post .nupr-promo-subtitle {
    font-size: 13px;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .nupr-left-column {
    flex: 0 0 44%;
    max-width: 480px;
  }

  .nupr-promo-timer {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .nupr-promo-timer__text {
    align-items: center;
    text-align: center;
  }

  .flip-clock-container {
    transform: scale(0.92);
    transform-origin: center;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .nupr-promo-post {
    flex-direction: column;
    align-items: stretch;
  }

  .nupr-left-column {
    flex: none;
    width: 100%;
    max-width: 760px;
    border-right: 0;
    border-bottom: 1px solid #edf0f4;
    padding: 24px 32px 28px;
    margin: 0 auto;
  }

  .nupr-promo-post > .ipsColumn_fluid {
    width: 100%;
    padding: 24px 32px 28px;
  }

  .nupr-product-icons-top,
  .nupr-product-icons-bottom {
    gap: 28px;
    flex-wrap: wrap;
  }

  .nupr-product-icon {
    width: 46px;
    height: 46px;
  }

  .nupr-product-icon-wrapper {
    min-width: 110px;
  }

  .nupr-product-icon-text {
    font-size: 12px;
  }

  .nupr-product-wrapper {
    width: 96%;
    max-width: 720px;
    margin: 12px auto 0;
  }

  .nupr-promo-kicker {
    font-size: 11px;
  }

  .nupr-promo-title {
    font-size: 21px;
  }

  .nupr-promo-subtitle {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .nupr-promo-list {
    font-size: 13px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
  }

  .nupr-promo-actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .nupr-promo-btn {
    flex: 1 1 45%;
    min-width: 220px;
    padding: 12px 18px;
    font-size: 15px;
  }

  .nupr-promo-timer {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .nupr-promo-timer__text {
    align-items: center;
  }

  .nupr-promo-trust {
    justify-content: center;
    font-size: 11px;
    gap: 10px;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .nupr-product-wrapper {
    width: 96%;
    max-width: 660px;
  }

  .nupr-promo-btn {
    flex: 1 1 100%;
    min-width: 0;
  }
}

