body.newcom-cart-popup-open {
  overflow: hidden;
}

/* Popup rimozione prodotto */
#block-newcomremovefromcart {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1000;

	&.is-active {
		display: flex;
	}

	.block-wrapper,
	.content {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	#newcom-remove-from-cart-block-container {
		width: 100%;
		max-width: 420px;
		padding: 25px 30px;
		border-radius: 12px;
		background-color: #ffffff;
		box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
		text-align: center;

		.popup-title {
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 10px;
			font-size: 22px;
			font-weight: 600;
			margin-bottom: 18px;

			i {
				--color: #d7000c;
				font-size: 24px;
			}
		}

		.popup-text {
			font-size: 16px;
			line-height: 1.6;
			margin-bottom: 20px;
		}

		.popup-actions-subtitle {
			font-size: 16px;
			font-weight: 600;
			margin-bottom: 15px;
		}

		.popup-actions-buttons {
			display: flex;
			justify-content: center;
			gap: 15px;
		}

		.newcom-button {
			cursor: pointer;
			padding: 0.75rem 1rem;
      padding-top: 0.85rem;
			text-transform: uppercase;
		}
	}
}

/* Solo Mobile */
body.is-mobile {
  #block-newcomremovefromcart {
		padding: 30px 15px;

		#newcom-remove-from-cart-block-container {
			padding: 20px;
		}

		.popup-actions-buttons {
			flex-direction: column;
			gap: 10px;
		}

		.newcom-button {
			width: 100%;
		}
  }
}


