/**
 * Order Addon – Rezervačný formulár
 * Moderný dizajn kompatibilný s Elementor nastaveniami.
 */

/* Minimálne predvolené štýly – farby, pozadie a písmo nastavte v Elementore (Style) */
.order-addon-reservation-form {
	--oa-transition: 0.2s ease;
	--oa-input-border: currentColor;
	--oa-input-focus: currentColor;
	--oa-section-border: currentColor;
	--oa-text-muted: currentColor;
	--oa-accent: currentColor;
	--oa-qty-input-bg: #fff;
	--oa-qty-input-text: #111;
	--oa-qty-btn-bg: transparent;
	--oa-qty-btn-color: currentColor;
	--oa-variation-row-gap: 0.75em;
	--oa-product-image-align: flex-start;
}


.order-addon-reservation-form {
	margin: 1.5em 0;
	max-width: 100%;
	font-family: inherit;
	transition: opacity var(--oa-transition);
}

/* Formulárové polia – grid */
.order-addon-fields-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 1em 1.5em;
	margin-bottom: 1em;
}

.order-addon-field {
	margin-bottom: 0;
	flex: 1 1 auto;
	min-width: 0;
}

.order-addon-field-width-full {
	flex: 1 1 100%;
}

.order-addon-field-width-half {
	flex: 1 1 calc(50% - 0.75em);
	min-width: 140px;
}

.order-addon-field-width-third {
	flex: 1 1 calc(33.333% - 1em);
	min-width: 120px;
}

@media (max-width: 767px) {
	.order-addon-field-width-half,
	.order-addon-field-width-third {
		flex: 1 1 100%;
	}
}

.order-addon-field label {
	display: block;
	margin-bottom: 0.4em;
	font-weight: 500;
	font-size: 0.9em;
}

.order-addon-field input:not(.order-addon-checkbox-input),
.order-addon-field textarea {
	width: 100%;
	max-width: 100%;
	padding: 0.65em 1em;
	background: transparent;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	font-family: inherit;
	font-size: 1em;
	line-height: 1.5;
	color: inherit;
	transition: border-color var(--oa-transition), box-shadow var(--oa-transition);
}

.order-addon-field input:focus,
.order-addon-field textarea:focus {
	outline: none;
}

.order-addon-field input::placeholder,
.order-addon-field textarea::placeholder {
	opacity: 0.7;
}

.order-addon-field textarea {
	min-height: 100px;
	resize: vertical;
}

.order-addon-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.6em;
	cursor: pointer;
}

.order-addon-checkbox-input {
	width: 20px;
	height: 20px;
	min-width: 20px;
	margin-top: 0.15em;
	flex-shrink: 0;
	accent-color: var(--oa-accent);
	cursor: pointer;
}

.order-addon-field .required {
	color: #ef4444;
}

/* Opt-out blok */
.order-addon-opt-out {
	margin-bottom: 1.5em;
	padding: 1em 1.25em;
	background: transparent;
	border: 1px solid var(--oa-section-border);
	border-radius: 10px;
	transition: opacity var(--oa-transition);
}

.order-addon-opt-out label {
	display: flex;
	align-items: center;
	gap: 0.6em;
	cursor: pointer;
	font-size: 0.95em;
}

.order-addon-opt-out-checkbox {
	width: 20px;
	height: 20px;
	accent-color: var(--oa-accent);
}

.order-addon-products-wrapper.order-addon-disabled {
	display: none;
}

/* Sekcie produktov */
.order-addon-section {
	margin-bottom: 1.5em;
	padding: 1.5em;
	background: transparent;
	border: 1px solid var(--oa-section-border);
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	transition: box-shadow var(--oa-transition);
}

.order-addon-section:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.order-addon-section-title {
	margin: 0 0 0.75em;
	font-size: 1.15em;
	font-weight: 600;
	color: inherit;
	border-bottom: 1px solid var(--oa-section-border);
	padding-bottom: 0.6em;
	letter-spacing: -0.02em;
}

.order-addon-section-description {
	margin-bottom: 1em;
	font-size: 0.9em;
	line-height: 1.55;
	color: var(--oa-text-muted);
}

/* Produktové karty */
.order-addon-section-products {
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.order-addon-section-products.order-addon-layout-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25em;
}

.order-addon-product-block {
	padding: 1em;
	background: transparent;
	border-radius: 10px;
	border: 1px solid transparent;
	transition: background var(--oa-transition), border-color var(--oa-transition);
}

.order-addon-product-block:hover {
	background: transparent;
}

.order-addon-product-inner {
	display: flex;
	align-items: var(--oa-product-image-align);
	gap: 1.25em;
}

.order-addon-product-image {
	flex-shrink: 0;
	width: 100px;
	min-width: 100px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.order-addon-product-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	aspect-ratio: 1;
	vertical-align: middle;
}

.order-addon-product-image-trigger {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}

.order-addon-product-content {
	flex: 1;
	min-width: 0;
}

.order-addon-product-description {
	font-size: 0.875em;
	color: var(--oa-text-muted);
	margin-bottom: 0.5em;
	line-height: 1.45;
}

.order-addon-product-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	flex-wrap: wrap;
}

.order-addon-product-label {
	flex: 1;
	min-width: 0;
}

.order-addon-product-label strong {
	display: block;
	margin-bottom: 0.2em;
	font-size: 1.05em;
	font-weight: 600;
}

.order-addon-price-badge {
	font-size: 0.85em;
	font-weight: 500;
	color: var(--oa-text-muted);
}

.order-addon-price-eur {
	font-size: 0.82em;
	font-weight: 500;
	opacity: 0.9;
}

.order-addon-variation-price-preview {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35em 0.75em;
	margin: 0 0 0.45em;
}

/* Pole množstva */
.order-addon-product-quantity {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35em;
}

.order-addon-product-quantity label {
	font-size: 0.75em;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--oa-text-muted);
}

.order-addon-product-quantity .order-addon-qty-input {
	width: 72px;
	padding: 0.5em 0.6em;
	text-align: center;
	background: var(--oa-qty-input-bg);
	border: 1px solid var(--oa-input-border);
	border-radius: 8px;
	font-size: 1em;
	font-weight: 600;
	color: var(--oa-qty-input-text);
	transition: border-color var(--oa-transition), box-shadow var(--oa-transition);
}

.order-addon-product-quantity .order-addon-qty-input:focus {
	outline: none;
	border-color: var(--oa-input-focus);
	box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.order-addon-qty-stepper {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--oa-input-border);
	border-radius: 8px;
	overflow: hidden;
}

.order-addon-qty-stepper .order-addon-qty-btn {
	width: 30px;
	min-width: 30px;
	height: 36px;
	flex: 0 0 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: var(--oa-qty-btn-bg);
	color: var(--oa-qty-btn-color);
	cursor: pointer;
	font-size: 1.1em;
	font-weight: 700;
	line-height: 1;
	padding: 0 !important;
	appearance: none;
	-webkit-appearance: none;
	transition: none !important;
	transform: none !important;
}

.order-addon-qty-stepper .order-addon-qty-btn:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: none !important;
}

.order-addon-qty-stepper .order-addon-qty-btn:active,
.order-addon-qty-stepper .order-addon-qty-btn:focus {
	transform: none !important;
}

.order-addon-qty-stepper .order-addon-qty-input,
.order-addon-qty-stepper .order-addon-variation-picker-qty {
	width: 60px;
	height: 36px;
	padding: 0.35em 0.4em;
	border: 0;
	border-left: 1px solid var(--oa-input-border);
	border-right: 1px solid var(--oa-input-border);
	border-radius: 0;
	text-align: center;
	font-weight: 600;
	background: var(--oa-qty-input-bg);
	color: var(--oa-qty-input-text);
}

.order-addon-qty-stepper .order-addon-qty-input:focus,
.order-addon-qty-stepper .order-addon-variation-picker-qty:focus {
	outline: none;
	box-shadow: none;
}

/* Odstránenie natívnych šípok pri number inputoch */
.order-addon-reservation-form input[type='number'] {
	-moz-appearance: textfield;
	appearance: textfield;
}

.order-addon-reservation-form input[type='number']::-webkit-outer-spin-button,
.order-addon-reservation-form input[type='number']::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Variabilné produkty – množstvo per variácia */
.order-addon-variations-quantities {
	display: flex;
	flex-direction: column;
	gap: 0.75em;
	margin-top: 0.5em;
}

.order-addon-variation-builder {
	margin-top: 0.5em;
	display: flex;
	flex-direction: column;
	gap: 0.75em;
}

.order-addon-variation-picker-row {
	display: flex;
	flex-wrap: wrap;
	gap: var(--oa-variation-row-gap);
	align-items: flex-end;
}

.order-addon-variation-picker {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75em;
	flex: 1 1 280px;
	min-width: 220px;
}

.order-addon-variation-picker-row .order-addon-product-variation {
	min-width: 170px;
	flex: 1 1 170px;
}

.order-addon-variation-picker-select {
	min-width: 100%;
	padding: 0.5em 0.75em;
	background: var(--oa-qty-input-bg);
	border: 1px solid var(--oa-input-border);
	border-radius: 8px;
	color: var(--oa-qty-input-text);
}

.order-addon-variation-picker-select.order-addon-invalid-selection {
	border-color: #ef4444;
}

.order-addon-selected-variations {
	display: flex;
	flex-direction: column;
	gap: 0.6em;
}

.order-addon-selected-variations-empty {
	margin: 0;
	font-size: 0.88em;
	opacity: 0.85;
}

.order-addon-selected-variations-empty.is-hidden {
	display: none;
}

.order-addon-selected-variation-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45em 0.75em;
	padding: 0.45em 0.6em;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 8px;
	color: var(--oa-qty-input-text);
}

.order-addon-selected-variation-label {
	font-weight: 600;
	flex: 1 1 180px;
	min-width: 120px;
}

.order-addon-selected-variation-item .order-addon-qty-stepper {
	margin-left: 0;
}

.order-addon-remove-variation-btn {
	width: auto;
	min-width: 0;
	height: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--oa-qty-btn-color);
	cursor: pointer;
	font-size: 1.1em;
	line-height: 1;
	font-weight: 700;
	padding: 0 0.15em !important;
	margin-left: 0;
	flex: 0 0 auto;
	appearance: none;
	-webkit-appearance: none;
	transform: none !important;
}

.order-addon-selected-variation-item .order-addon-remove-variation-btn::before,
.order-addon-selected-variation-item .order-addon-remove-variation-btn::after {
	content: none !important;
}

.order-addon-remove-variation-btn:hover,
.order-addon-remove-variation-btn:focus,
.order-addon-remove-variation-btn:active,
.order-addon-summary-remove-btn:hover,
.order-addon-summary-remove-btn:focus,
.order-addon-summary-remove-btn:active {
	background: rgba(255, 255, 255, 0.08);
	color: var(--oa-qty-btn-color);
	transform: none !important;
}

.order-addon-variation-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5em 1em;
}

.order-addon-variation-row label {
	margin: 0;
	font-weight: 500;
	min-width: 4em;
}

.order-addon-variation-row .order-addon-qty-input {
	width: 70px;
}

.order-addon-variation-row .order-addon-stock-hint {
	font-size: 0.8em;
	opacity: 0.8;
}

.order-addon-product-total {
	margin-top: 0.5em;
	padding-top: 0.5em;
	border-top: 1px dashed var(--oa-section-border);
}

/* Variácia – select (legacy, ak ešte niekde ostal) */
.order-addon-product-variation {
	display: flex;
	flex-direction: column;
	gap: 0.35em;
}

.order-addon-product-variation label {
	font-size: 0.75em;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--oa-text-muted);
}

.order-addon-variation-select {
	min-width: 140px;
	padding: 0.5em 2em 0.5em 0.75em;
	background: transparent;
	border: 1px solid var(--oa-input-border);
	border-radius: 8px;
	font-size: 0.95em;
	font-family: inherit;
	color: inherit;
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.6em center;
	transition: border-color var(--oa-transition);
}

.order-addon-variation-select:focus {
	outline: none;
	border-color: var(--oa-input-focus);
}

.order-addon-section-total {
	margin-top: 0.6em;
	font-size: 0.9em;
	color: var(--oa-text-muted);
}

.order-addon-section-total.order-addon-section-sum {
	margin-top: 1em;
	padding-top: 1em;
	border-top: 1px solid var(--oa-section-border);
	font-weight: 600;
	font-size: 1em;
	color: inherit;
}

/* Súhlas s podmienkami */
.order-addon-terms-section {
	margin: 1.5em 0;
	padding: 1.5em;
	background: transparent;
	border: 1px solid var(--oa-section-border);
	border-radius: 12px;
}

.order-addon-terms-title {
	margin: 0 0 0.75em;
	font-size: 1.1em;
	font-weight: 600;
}

.order-addon-terms-content {
	font-size: 0.9em;
	line-height: 1.6;
	color: var(--oa-text-muted);
	margin-bottom: 1em;
}

.order-addon-terms-content p:last-child {
	margin-bottom: 0;
}

.order-addon-terms-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.6em;
	cursor: pointer;
	font-size: 0.95em;
}

.order-addon-terms-checkbox-label input {
	width: 20px;
	height: 20px;
	min-width: 20px;
	margin-top: 0.15em;
	flex-shrink: 0;
	accent-color: var(--oa-accent);
	cursor: pointer;
}

/* Sumarizácia */
.order-addon-summary-section {
	margin: 1.5em 0 1em;
}

.order-addon-summary-heading {
	margin: 0 0 0.5em;
	font-size: 1.1em;
	font-weight: 600;
}

.order-addon-summary-items-wrap {
	margin: 0 0 0.9em;
}

.order-addon-summary-items {
	display: flex;
	flex-direction: column;
	gap: 0.55em;
}

.order-addon-summary-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.45em 0.9em;
	padding: 0.55em 0.7em;
	border: 1px solid var(--oa-section-border);
	border-radius: 8px;
	background: transparent;
}

.order-addon-summary-item-main {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.25em 0.6em;
	flex: 1 1 220px;
	min-width: 180px;
}

.order-addon-summary-item-name {
	font-weight: 600;
}

.order-addon-summary-item-price {
	font-size: 0.86em;
	color: var(--oa-text-muted);
}

.order-addon-summary-item-actions {
	display: flex;
	align-items: center;
	gap: 0.45em;
}

.order-addon-summary-qty-input {
	width: 60px;
	height: 36px;
	padding: 0.35em 0.4em;
	border: 0;
	border-left: 1px solid var(--oa-input-border);
	border-right: 1px solid var(--oa-input-border);
	border-radius: 0;
	text-align: center;
	font-weight: 600;
	background: var(--oa-qty-input-bg);
	color: var(--oa-qty-input-text);
}

.order-addon-summary-remove-btn {
	width: auto;
	min-width: 0;
	height: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--oa-qty-btn-color);
	cursor: pointer;
	font-size: 1.1em;
	line-height: 1;
	font-weight: 700;
	padding: 0 0.15em !important;
	margin-left: 0;
	flex: 0 0 auto;
	appearance: none;
	-webkit-appearance: none;
	transform: none !important;
}

.order-addon-summary-empty {
	margin: 0.15em 0 0;
	font-size: 0.88em;
	opacity: 0.85;
}

.order-addon-summary-empty.is-hidden {
	display: none;
}

.order-addon-form-total {
	margin: 1em 0;
	padding: 1.25em 1.5em;
	background: transparent;
	border: 1px solid var(--oa-section-border);
	border-radius: 12px;
	font-size: 1.15em;
	font-weight: 600;
}

.order-addon-form-total .order-addon-grand-total {
	margin-left: 0.25em;
}

.order-addon-form-total .order-addon-grand-total-eur {
	margin-left: 0.75em;
	font-size: 0.88em;
	font-weight: 500;
	opacity: 0.9;
}

/* Tlačidlo */
.order-addon-reservation-submit {
	margin: 1.25em 0 0;
	display: flex;
	justify-content: flex-start;
}

.order-addon-submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.875em 1.75em;
	font-size: 1em;
	font-weight: 600;
	font-family: inherit;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.order-addon-submit-btn:hover {
	transform: translateY(-1px);
}

.order-addon-submit-btn:active {
	transform: translateY(0);
}

.order-addon-confirm-variation-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.875em 1.75em;
	font-size: 1em;
	font-weight: 600;
	font-family: inherit;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.order-addon-confirm-variation-btn:hover {
	transform: translateY(-1px);
}

.order-addon-confirm-variation-btn:active {
	transform: translateY(0);
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.order-addon-image-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.86);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	z-index: 10000;
}

.order-addon-image-lightbox.is-open {
	display: flex;
}

.order-addon-image-lightbox-img {
	max-width: min(95vw, 1200px);
	max-height: 88vh;
	width: auto;
	height: auto;
	border-radius: 8px;
}

.order-addon-image-lightbox-close {
	position: absolute;
	top: 0.8rem;
	right: 0.8rem;
	width: 40px;
	min-width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.3);
	color: #fff;
	cursor: pointer;
	font-size: 1.4rem;
	line-height: 1;
	padding: 0 !important;
	appearance: none;
	-webkit-appearance: none;
	transform: none !important;
	transition: background-color 0.2s ease, opacity 0.2s ease;
}

.order-addon-image-lightbox-nav {
	position: absolute;
	top: 50%;
	margin-top: -22px;
	transform: none !important;
	width: 44px;
	min-width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	cursor: pointer;
	font-size: 0;
	line-height: 0;
	display: block;
	padding: 0 !important;
	appearance: none;
	-webkit-appearance: none;
	transition: background-color 0.2s ease, opacity 0.2s ease;
}

.order-addon-image-lightbox-nav::before {
	content: '';
	position: absolute;
	inset: 0;
	margin: auto;
	width: 10px;
	height: 10px;
	box-sizing: border-box;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform-origin: center center;
	pointer-events: none;
}

.order-addon-image-lightbox-prev {
	left: 0.8rem;
}

.order-addon-image-lightbox-prev::before {
	transform: rotate(-135deg);
}

.order-addon-image-lightbox-next {
	right: 0.8rem;
}

.order-addon-image-lightbox-next::before {
	transform: rotate(45deg);
}

.order-addon-image-lightbox-counter {
	position: absolute;
	bottom: 0.8rem;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 500;
}

.order-addon-image-lightbox-close:hover,
.order-addon-image-lightbox-close:focus,
.order-addon-image-lightbox-close:active,
.order-addon-image-lightbox-nav:hover,
.order-addon-image-lightbox-nav:focus,
.order-addon-image-lightbox-nav:active {
	transform: none !important;
}

/* Responzívne */
@media (max-width: 767px) {
	.order-addon-section-products.order-addon-layout-grid {
		grid-template-columns: 1fr;
	}

	.order-addon-product-inner {
		flex-direction: column;
	}

	.order-addon-product-image {
		width: min(220px, 100%);
		min-width: 0;
		max-width: 220px;
	}

	.order-addon-product-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.order-addon-variation-picker-row {
		flex-direction: column;
		align-items: stretch;
		gap: 0.5em;
	}

	.order-addon-variation-picker {
		flex: 1 1 auto;
		min-width: 0;
		width: 100%;
		gap: 0.5em;
	}

	.order-addon-variation-picker-row .order-addon-product-variation {
		min-width: 0;
		flex: 1 1 100%;
	}

	.order-addon-picker-quantity {
		width: 100%;
	}

	.order-addon-selected-variation-item {
		gap: 0.4em 0.6em;
	}

	.order-addon-selected-variation-label {
		flex: 1 1 100%;
		min-width: 0;
	}

	.order-addon-summary-item {
		padding: 0.5em 0.6em;
	}

	.order-addon-summary-item-main {
		flex: 1 1 100%;
		min-width: 0;
	}

	.order-addon-summary-item-actions {
		width: 100%;
		justify-content: space-between;
	}

	.order-addon-confirm-variation-btn {
		width: 100%;
	}
}

/* Vložená pokladňa */
.order-addon-checkout-section {
	margin-top: 2.5em;
	padding-top: 2em;
	border-top: 1px solid var(--oa-section-border);
}

.order-addon-checkout-placeholder {
	padding: 2em;
	text-align: center;
	background: transparent;
	border: 1px dashed var(--oa-section-border);
	border-radius: 12px;
	color: var(--oa-text-muted);
}

.order-addon-checkout-placeholder p {
	margin: 0;
}

/* Legacy – zachované pre spätnú kompatibilitu */
.order-addon-reservation-products {
	list-style: none;
	margin: 0 0 1.5em;
	padding: 0;
	border: 1px solid var(--oa-section-border);
	border-radius: 8px;
	background: transparent;
}

.order-addon-reservation-product {
	display: flex;
	align-items: center;
	gap: 1em;
	padding: 1em 1.25em;
	border-bottom: 1px solid var(--oa-section-border);
}

.order-addon-reservation-product:last-child {
	border-bottom: none;
}

.order-addon-product-info {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
}

.order-addon-product-name {
	font-weight: 500;
}

.order-addon-product-price {
	font-weight: 600;
}

/* Platobné metódy – obmedzenie veľkosti ikon (Comgate atď.) */
.order-addon-wrapper .payment_methods img,
.order-addon-wrapper .woocommerce-checkout-payment .payment_methods img {
	max-width: 80px;
	max-height: 40px;
	height: auto;
	object-fit: contain;
}
