/* Link wyglądający jak tekst */
.acf-link {
  display: inline-block;
  margin: 10px 0;
  color: #8b0000; /* kolor linku, np. ciemnoczerwony */
  text-decoration: underline;
  cursor: pointer;
}

.acf-link:hover {
  color: #c00; /* jaśniejszy po najechaniu */
}

/* Modal */
.acf-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.acf-modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.acf-close {
  color: #aaa;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.acf-close:hover {
  color: #000;
}


.button.alt {
	background-color:#3c1c1b!important;
	border-radius:25px!important;
	border-color: #3c1c1b!important;
	border-width: 2px!important;
	padding: 16px 26px 16px 26px!important;
	text-transform: uppercase!important;
	font-size: 1.2rem!important;
}
.button.alt:hover {
	background-color:#ffffff!important;
	color: #3c1c1b!important;
	border-color: #3c1c1b!important;
}
.w-commerce-commerceaddtocartoptionpill {
	border-radius: 25px;
	border-bottom-color: #3c1c1b;
	border-width: 2px;
}
.w-commerce-commerceaddtocartoptionpill.w--ecommerce-pill-selected {
	background-color: #3c1c1b;
}
.wc_payment_methods.payment_methods.methods {
	display: grid;
grid-template-columns: repeat(5, 1fr);
grid-template-rows: repeat(3, 1fr);
grid-column-gap: 16px;
grid-row-gap: 16px;
}
.wc_payment_methods.payment_methods.methods li {
	width:100%;
	display:flex;
	flex-direction:column;
	justify-content:flex-start;
	align-items:center;
	margin:10px;
	padding:20px;
	background-color:#ffffff;
	border-radius:16px;
}
.wc_payment_methods.payment_methods.methods li label {
	text-align:center;
	line-height:20px;
	margin-top:10px;
}
.wc_payment_methods.payment_methods.methods li input {
	margin-right:0px!important;
}
@media only screen and (max-width: 800px) {
	.wc_payment_methods.payment_methods.methods {
	display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(3, 1fr);
}
}
.input-text {
	padding:5px 10px 6px 10px;
	border:1px solid #ddd;
	border-radius:8px;
}