:root {
	--flowee-button-color: #000000;
	--flowee-text-color: #ffffff;
	--flowee-border-radius: 8px;
	--flowee-primary-bg: #f9f9f9;
	--flowee-border-color: #e0e0e0;
	--flowee-text-dark: #333333;
	--flowee-text-light: #666666;
}
.hero-eshop {
	background-color: #f5f0eb;
	min-height: auto;
    height: auto;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 10rem 3rem 3rem 3rem;
}


a.product-card {
	position: relative;
	text-decoration: none;
	display: block;
	
}
.product-image {
    position: relative;
}
.badges {
    position: absolute;
    inset: 0;
}
.badge {
	font-size: .775rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 2px 4px;
    line-height: normal;
}
.badge.badge-new {
    background: #774b5d;
    color: #fff;    
}
.badge.badge-sale {
    background: pink;
    color: #000;
}

p.sold-out {
    background: #e2c5ce;
    color: #2b0b17;
    font-size: .775rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 2px 10px;
    line-height: normal;
}

.product-price strong {
    color: #000;
    font-size: 1.3rem;
}
.product-price del {
    color: #5f5f5f;
    font-size: 1rem;
    display: inline-block;
    margin-right: 5px;
}

/* Výpis kategorií */
a.category-box {
    display: block;
    background: #F5F5F5;
    color: #000;
    text-decoration: none;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

/* Required fields error */
.input-error {
    border: 2px solid red;
}

.error-message {
    color: red;
    font-size: 0.9em;
    margin-top: 2px;
    display: none; /* hidden by default */
}





/* Pův. */

.flowee-product-content {
	padding: 16px;
}

.flowee-product-title {
	margin: 0 0 8px 0;
	font-size: 18px;
	font-weight: 600;
	color: var(--flowee-text-dark);
}

.flowee-btn {
	display: inline-block;
	padding: 12px 24px;
	border: none;
	border-radius: var(--flowee-border-radius);
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
	text-align: center;
}

.flowee-btn-primary {
	background-color: var(--flowee-button-color);
	color: var(--flowee-text-color);
}

.flowee-btn-primary:hover {
	opacity: 0.9;
	transform: scale(1.02);
}

.flowee-btn-large {
	padding: 14px 32px;
	font-size: 18px;
	width: 100%;
}

.flowee-checkout-container {
	max-width: 700px;
	margin: 40px auto;
	padding: 20px;
}

.flowee-checkout-wrapper {
	background: #ffffff;
	border: 1px solid var(--flowee-border-color);
	border-radius: var(--flowee-border-radius);
	padding: 32px;
}

.flowee-checkout-form h1 {
	margin-top: 0;
	margin-bottom: 24px;
	font-size: 28px;
	color: var(--flowee-text-dark);
}

.flowee-order-summary {
	background: var(--flowee-primary-bg);
	border: 1px solid var(--flowee-border-color);
	border-radius: var(--flowee-border-radius);
	padding: 16px;
	margin-bottom: 28px;
}

.flowee-summary-item {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	font-size: 15px;
}

.flowee-summary-item span {
	color: var(--flowee-text-light);
}

.flowee-summary-item strong {
	color: var(--flowee-text-dark);
	font-weight: 600;
}

.flowee-summary-total {
	display: flex;
	justify-content: space-between;
	padding-top: 12px;
	margin-top: 12px;
	border-top: 1px solid var(--flowee-border-color);
	font-size: 18px;
	font-weight: 700;
}

.flowee-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.flowee-form fieldset {
	border: none;
	padding: 0;
	margin: 0;
}

.flowee-form legend {
	font-size: 16px;
	font-weight: 600;
	color: var(--flowee-text-dark);
	margin-bottom: 12px;
	padding: 0;
}

.flowee-form-group {
	display: flex;
	flex-direction: column;
	margin-bottom: 12px;
}

.flowee-form-group label {
	margin-bottom: 6px;
	font-weight: 500;
	color: var(--flowee-text-dark);
	font-size: 14px;
}

.flowee-form-group input,
.flowee-form-group textarea {
	padding: 10px 12px;
	border: 1px solid var(--flowee-border-color);
	border-radius: var(--flowee-border-radius);
	font-family: inherit;
	font-size: 14px;
	color: var(--flowee-text-dark);
	background: #ffffff;
	transition: border-color 0.3s ease;
}

.flowee-form-group input:focus,
.flowee-form-group textarea:focus {
	outline: none;
	border-color: var(--flowee-button-color);
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.flowee-error-message {
	background: #fee;
	color: #c33;
	padding: 12px;
	border-radius: var(--flowee-border-radius);
	border: 1px solid #fcc;
	margin-top: 12px;
	font-size: 14px;
}

.flowee-loading {
	text-align: center;
	padding: 12px;
	color: var(--flowee-text-light);
	font-size: 14px;
}

.flowee-status-badge {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.flowee-status-pending {
	background: #fff3cd;
	color: #856404;
}

.flowee-status-paid {
	background: #d4edda;
	color: #155724;
}

.flowee-status-paid_test {
	background: #d1ecf1;
	color: #0c5460;
}

.flowee-status-cancelled {
	background: #f8d7da;
	color: #721c24;
}

.flowee-status-refunded {
	background: #e2e3e5;
	color: #383d41;
}