@charset "UTF-8";
/* =========================================================
   FLARO / WORDPRESS / WOOCOMMERCE BASE THEME
   ========================================================= */

/* ---------------------------------------------------------
   VARIABLES
--------------------------------------------------------- */

:root {
	--navy: #08084f;
	--navy-dark: #05052f;
	--black: #000;
	--white: #fff;

	--red: #b71922;

	--text: #10102f;
	--muted: #6d6d78;
	--light: #f4f4f4;
	--border: #e8e8e8;

	--container: 1180px;
	--radius: 22px;
	--radius-small: 10px;

	--shadow: 0 10px 35px rgba(0, 0, 0, .07);

	--transition: .25s ease;
}


/* =========================================================
   RESET
========================================================= */

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--white);
	color: var(--text);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.45;
	-webkit-font-smoothing: antialiased;
}

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

svg {
	max-width: 100%;
}

figure {
	margin: 0;
}

iframe {
	max-width: 100%;
}

button,
input,
textarea,
select {
	font: inherit;
}

button,
input[type="submit"] {
	cursor: pointer;
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition);
}

p {
	margin: 0 0 20px;
}

ul,
ol {
	margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 20px;
	color: var(--text);
	font-weight: 700;
	line-height: 1.1;
}

h1 {
	font-size: clamp(38px, 5vw, 48px);
}

h2 {
	font-size: clamp(30px, 4vw, 48px);
}

h3 {
	font-size: clamp(22px, 2.5vw, 32px);
}

h4 {
	font-size: 20px;
}


/* =========================================================
   GLOBAL LAYOUT
========================================================= */

.site,
.site-content,
.content-area,
.site-main,
#page,
.site.grid-container,
.inside-article {
	width: 100%;
	max-width: 100%;
}

#primary {
	width: 100%;
}

.grid-container,
.site-grid,
.container,
.inside-header,
.inside-navigation,
.footer-widgets,
.inside-site-info {
	width: min(calc(100% - 40px), var(--container));
	margin-left: auto;
	margin-right: auto;
}

.site-main {
	width: min(calc(100% - 40px), var(--container));
	margin-left: auto;
	margin-right: auto;
}

.inside-article {
	padding: 0;
}

.site-content {
	padding: 60px 0;
}

body.home .site-content {
	padding-top: 0;
}

.entry-content {
	width: 100%;
	/* text-align: center; */
}

.entry-content > *:first-child {
	margin-top: 0;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
	position: relative;
	z-index: 100;
	width: 100%;
	background: transparent;
	text-align: center;
	padding: 2vw;
}

.inside-header {
	min-height: 105px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.site-logo img,
.custom-logo {
	width: auto;
	max-width: 165px;
	max-height: 65px;
}

#nav {
	margin-left: auto;
	background: transparent;
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 210px);
	text-align: right;
}

.main-navigation {
	margin-left: auto;
	background: transparent;
	display: inline-block;
}

.main-navigation ul {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
	/* display: inline-block; */
}

.main-navigation li {
	position: relative;
	display: inline-block;
}

#nav a {
	display: block;
	align-items: center;
	padding: 11px 17px;
	border-radius: 30px;
	color: var(--text);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	display: inline-block;
	vertical-align: middle;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
	background: #ececec;
}

.main-navigation ul ul {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	display: block;
	min-width: 220px;
	padding: 10px;
	background: #fff;
	border-radius: 12px;
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: var(--transition);
}

.main-navigation li:hover > ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-navigation ul ul a {
	width: 100%;
	padding: 12px 15px;
	border-radius: 7px;
}


/* =========================================================
   BUTTONS
========================================================= */

.button,
button,
input[type="submit"],
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 46px;
	padding: 12px 25px;
	border: 0;
	border-radius: 999px;
	background: var(--navy);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	transition:
		transform var(--transition),
		background var(--transition),
		box-shadow var(--transition);
}

.button:hover,
button:hover,
input[type="submit"]:hover,
.wp-element-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: var(--navy-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(8, 8, 79, .18);
}

.button.white {
	background: #fff;
	color: var(--text);
}

.button.white:hover {
	background: #f2f2f2;
	color: var(--text);
}

.button.gray {
	background: #eee;
	color: var(--text);
}

.flaro-btn,
.woocommerce ul.products li.product .button {
	position: relative;
	overflow: hidden;
	background: var(--navy);
	color: white;
	border-radius: 50px;
	line-height: 1rem;
	padding: 20px;
}

.flaro-btn::after {
	/* content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº"; */
	margin-left: 8px;
	color: var(--red);
	font-size: 22px;
	font-weight: 400;
	line-height: 0;
	transition: transform .25s ease;
}

.flaro-btn:hover::after {
	transform: translateX(4px);
}


/* =========================================================
   FORMS
========================================================= */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="url"],
select,
textarea {
	width: 100%;
	min-height: 48px;
	padding: 12px 16px;
	border: 1px solid var(--border);
	border-radius: 8px;
	outline: none;
	background: #fff;
	color: var(--text);
	transition: border-color .2s ease, box-shadow .2s ease;
}

textarea {
	min-height: 140px;
	resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--navy);
	box-shadow: 0 0 0 3px rgba(8, 8, 79, .07);
}

label {
	display: block;
	margin-bottom: 7px;
	font-size: 14px;
	font-weight: 700;
}


/* =========================================================
   WORDPRESS CONTENT
========================================================= */

.entry-title {
	margin-bottom: 30px;
	/* text-align: center; */
	/* display: none; */
}

.entry-content a:not(.button):not(.wp-element-button) {
	/* color: var(--navy); */
}

.entry-content a:not(.button):hover {
	/* text-decoration: underline; */
}

.entry-content blockquote {
	margin: 35px 0;
	padding: 10px 0 10px 30px;
	border-left: 4px solid var(--navy);
	font-size: 20px;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	padding: 14px;
	border-bottom: 1px solid var(--border);
	text-align: left;
}


/* =========================================================
   WOOCOMMERCE GENERAL
========================================================= */

.woocommerce {
	color: var(--text);
}

.woocommerce .woocommerce-result-count {
	color: var(--muted);
	font-size: .8rem;
	text-align: center;
}

.woocommerce .woocommerce-ordering select {
	width: auto;
	min-width: 200px;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(5, minmax(300px, 1fr));
	gap: 45px 70px;
	margin: 45px 0;
	padding: 0;
	list-style: none;
	/* padding: 20vh 20px 20px 20px; */
	/* background-image: url(https://flaro.sk/wp-content/uploads/2026/07/flaro-background-eshop-clothing-cleaning-material-for-firemen-specialized-cleaning-technology-certified-safe.jpg); */
	background-position: top;
	background-size: 100%;
	background-repeat: no-repeat;
	/* background-color: #dcd8d7; */
	/* padding-bottom: 10vh; */
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
	justify-content: center;
	gap: 45px 70px;
	/* padding: 20vh 20px 10vh; */
	/* justify-content: center; */
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product {
	position: relative;
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 35px 28px 28px;
	background: #fff;
	border: 1px solid rgba(0,0,0,.015);
	box-shadow: var(--shadow);
	text-align: center;
	transition:
		transform .3s ease,
		box-shadow .3s ease;
	padding: 30px!important;
	/* max-width: 290px; */
}

.woocommerce ul.products li.product:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 45px rgba(0, 0, 0, .1);
}

.woocommerce ul.products li.product a img {
	width: 100%;
	height: 260px;
	margin: 0 0 25px;
	object-fit: contain;
	transition:
		transform .35s cubic-bezier(.2,.8,.2,1),
		opacity .35s ease;
	margin-top: 20px!important;
}

.woocommerce ul.products li.product:hover img {
	transform: scale(1.025);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	min-height: 54px;
	margin: 0;
	padding: 0;

	color: var(--text);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.15;
}

.woocommerce #main ul.products li.product .price {
	display: block;
	margin: 10px;
	color: var(--text);
	font-size: 23px;
	font-weight: 700;
}

.woocommerce ul.products li.product .price del {
	color: #aaa;
	font-size: 15px;
	font-weight: 400;
}

.woocommerce ul.products li.product .price ins {
	text-decoration: none;
}

.woocommerce ul.products li.product .button {
	width: 100%;
	margin-top: 0;
}

.woocommerce ul.products li.product .star-rating {
	margin: 12px auto;
}

.woocommerce span.onsale {
	top: 16px;
	left: 16px;

	min-width: auto;
	min-height: auto;
	margin: 0;
	padding: 7px 12px;

	border-radius: 30px;

	background: var(--red);
	color: #fff;

	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.woocommerce-products-header {
	max-width: 780px;
	margin: 0 auto 50px;
	text-align: center;
	display: none;
}

.woocommerce-ordering {
	display:none
}

.woocommerce-products-header__title {
	font-size: clamp(36px, 5vw, 38px);
}


/* =========================================================
   SINGLE PRODUCT
========================================================= */

.woocommerce div.product {
	margin-top: 30px;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
}

.woocommerce div.product::after {
	content: "";
	display: table;
	clear: both;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	width: 48%;
	margin-bottom: 70px;
	text-align: left;
}

.woocommerce div.product div.images {
	float: left;
	position: relative;
}

.woocommerce div.product div.summary {
	float: right;
	padding-top: 30px;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
	background: #fff;
}

.woocommerce div.product div.images img {
	object-fit: contain;
}

.woocommerce div.product .product_title {
	margin-bottom: 4px;
	font-size: clamp(30px, 4vw, 45px);
}



.woocommerce div.product p.price,
.woocommerce div.product span.price {
	margin: 0 0 10px;
	color: var(--text);
	font-size: 25px;
	font-weight: 700;
}

.woocommerce-product-details__short-description {
	max-width: 550px;
	margin: 20px 0 25px;
}

.woocommerce div.product form.cart {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 30px;
}

.woocommerce .quantity .qty {
	width: 60px;
	height: 46px;
	padding: 5px;
	border: 0;
	border-radius: 999px;
	background: #eee;
	text-align: center;
}

.woocommerce div.product form.cart .button {
	min-width: 180px;
}

.product_meta {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid var(--border);
	color: var(--muted);
	font-size: 13px;
}


/* =========================================================
   PRODUCT GALLERY
========================================================= */

.woocommerce div.product div.images .flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 5px;
	margin-top: 25px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
	width: 100% !important;
	padding: 15px;
	background: #f7f7f7;
}

.woocommerce div.product div.images .flex-control-thumbs img {
	opacity: .7;
}

.woocommerce div.product div.images .flex-control-thumbs img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs img:hover {
	opacity: 1;
}


/* =========================================================
   PRODUCT TABS
========================================================= */

.woocommerce div.product .woocommerce-tabs {
	clear: both;
	width: 100%;
	margin: 0 0 80px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex;
	justify-content: center;
	gap: 5px;

	margin: 0 0 50px;
	padding: 20px;

	border: 0;
	background: var(--navy);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	padding: 10px 20px;
	border-radius: 999px;
	color: #fff;
	font-weight: 700;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background: rgba(255, 255, 255, .35);
}

.woocommerce div.product .woocommerce-tabs .panel {
	width: min(calc(100% - 40px), 950px);
	margin: 0 auto;
	text-align: left;
}


/* =========================================================
   RELATED PRODUCTS
========================================================= */

.woocommerce .related.products,
.woocommerce .upsells.products {
	clear: both;
	margin-top: 70px;
}

.woocommerce .related.products > h2,
.woocommerce .upsells.products > h2 {
	margin-bottom: 40px;
	text-align: center;
	font-size: 32px;
}


/* =========================================================
   CART
========================================================= */

.woocommerce-cart table.cart {
	border: 0;
	border-collapse: collapse;
}

.woocommerce-cart table.cart th {
	padding: 18px;
	border: 0;
	background: var(--navy);
	color: #fff;
}

.woocommerce-cart table.cart td {
	padding: 20px 15px;
	border-color: var(--border);
}

.woocommerce-cart table.cart img {
	width: 85px;
}

.woocommerce-cart .cart-collaterals {
	margin-top: 50px;
}

.woocommerce-cart .cart-collaterals .cart_totals {
	float: right;
	width: min(100%, 500px);
	padding: 30px;
	background: #f7f7f7;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
	width: 100%;
}


/* =========================================================
   CHECKOUT
========================================================= */

.woocommerce-checkout .col2-set {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
	float: none;
	width: 100%;
}

.woocommerce form .form-row {
	margin-bottom: 18px;
}

.woocommerce-checkout-review-order {
	margin-top: 35px;
	padding: 30px;
	background: #f7f7f7;
}

.woocommerce-checkout-review-order table {
	border: 0 !important;
}

#place_order {
	width: 100%;
	margin-top: 20px;
}


/* =========================================================
   WOOCOMMERCE MESSAGES
========================================================= */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	margin-bottom: 30px;
	padding: 20px 25px 20px 55px;
	border: 0;
	border-radius: 50px;
	background: #f5f5f5;
	color: var(--text);
	background: white;
	box-shadow: 1px 1px 20px rgba(0,0,0,0.1);
	margin: 20px;
	text-align: center;
}

.woocommerce-message {
	border-left: 4px solid #38a169;
}

.woocommerce-info {
	border-left: 4px solid var(--navy);
}

.woocommerce-error {
	border-left: 4px solid var(--red);
}


/* =========================================================
   PAGINATION
========================================================= */

.woocommerce nav.woocommerce-pagination {
	margin: 50px 0;
}

.woocommerce nav.woocommerce-pagination ul {
	display: flex;
	justify-content: center;
	gap: 6px;
	border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 42px;
	height: 42px;
	padding: 0;

	border-radius: 50%;

	background: #eee;
	color: var(--text);
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
	background: var(--navy);
	color: #fff;
}


/* =========================================================
   WOOCOMMERCE MY ACCOUNT
========================================================= */

.woocommerce-account .entry-title {
	margin-bottom: 50px;
	font-size: clamp(22px, 5vw, 40px);
	line-height: 1;
}

.woocommerce-account .woocommerce {
	display: flex;
	align-items: flex-start;
	gap: 70px;
	width: 100%;
}

.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after {
	display: none !important;
	content: none !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	flex: 0 0 260px;
	width: 260px;
	float: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #e5e5e5;
}

.woocommerce-account .woocommerce-MyAccount-navigation li:last-child {
	border-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
	display: block;
	padding: 15px 18px;
	color: var(--text);
	font-size: 15px;
	font-weight: 700;
	border-radius: 8px;
	transition:
		background .2s ease,
		color .2s ease,
		transform .2s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
	background: #f3f3f3;
	color: var(--navy);
	transform: translateX(3px);
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
	background: var(--navy);
	color: #fff;
}

.woocommerce-account .woocommerce-MyAccount-content {
	flex: 1;
	width: auto;
	min-width: 0;
	float: none;
	padding: 35px 40px;
	background: #f7f7f7;
	border-radius: 14px;
}

.woocommerce-account .woocommerce-MyAccount-content > *:first-child {
	margin-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-content p {
	max-width: 760px;
	font-size: 16px;
	line-height: 1.6;
}

.woocommerce-account .woocommerce-MyAccount-content a {
	/* color: var(--navy); */
	font-weight: 700;
}

.woocommerce-account .woocommerce-MyAccount-content a:hover {
	/* color: var(--red); */
}

.woocommerce-account table.my_account_orders {
	width: 100%;
	margin: 0;
	border: 0;
	border-collapse: collapse;
	background: #fff;
}

.woocommerce-account table.my_account_orders th {
	padding: 14px 16px;
	background: var(--navy);
	color: #fff;
	font-size: 13px;
	text-align: left;
}

.woocommerce-account table.my_account_orders td {
	padding: 16px;
	border-bottom: 1px solid #eee;
}

.woocommerce-account table.my_account_orders .button {
	min-height: 38px;
	padding: 9px 16px;
	font-size: 12px;
}

.woocommerce-account .woocommerce-Addresses {
	/* display: grid; */
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 25px;
}

.woocommerce-account .woocommerce-Address {
	float: none !important;
	width: 100% !important;
	padding: 25px;
	background: #fff;
	border-radius: 10px;
	text-align: left;
	margin: 10px 0px;
}

.woocommerce-account .woocommerce-Address-title {
	/* display: flex; */
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.woocommerce-account .woocommerce-Address-title h2 {
	margin: 0;
	font-size: 22px;
}

.woocommerce-account form.edit-account,
.woocommerce-account form.woocommerce-EditAccountForm {
	max-width: 800px;
}

.woocommerce-account .woocommerce-form-row {
	margin-bottom: 20px;
}

.woocommerce-account fieldset {
	margin: 35px 0;
	padding: 25px;
	border: 1px solid #ddd;
	border-radius: 10px;
}

.woocommerce-account legend {
	padding: 0 10px;
	font-weight: 700;
}

.woocommerce-account:not(.logged-in) .woocommerce {
	display: block;
}

.woocommerce-account:not(.logged-in) .u-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 50px;
}

.woocommerce-account:not(.logged-in) .u-column1,
.woocommerce-account:not(.logged-in) .u-column2 {
	float: none;
	width: 100%;
	padding: 35px;
	background: #f7f7f7;
	border-radius: 14px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
	margin-top: 80px;
	padding: 80px 0 35px;
	background: #000;
	color: #fff;
}

.site-footer,
.site-footer p,
.site-footer a,
.site-footer h2,
.site-footer h3,
.site-footer h4 {
	color: #fff;
}

.footer-widgets-container {
	padding: 0 !important;
}

.site-info {
	margin-top: 50px;
	padding: 30px 0;
	border-top: 1px solid rgba(255,255,255,.2);
	background: transparent;
	color: #fff;
	font-size: 12px;
}


/* =========================================================
   UTILITY CLASSES
========================================================= */

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.flex {
	display: flex;
}

.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.section {
	padding: 90px 0;
}

.section-small {
	padding: 60px 0;
}

.bg-navy {
	background: var(--navy);
	color: #fff;
}

.bg-light {
	background: var(--light);
}

.rounded {
	border-radius: var(--radius);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 35px;
	}

	.woocommerce div.product div.images,
	.woocommerce div.product div.summary {
		width: 47%;
	}

	.woocommerce-checkout .col2-set {
		gap: 30px;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

	body {
		font-size: 15px;
	}

	.grid-container,
	.container,
	.inside-header,
	.inside-navigation {
		width: min(calc(100% - 30px), var(--container));
	}

	.site-main {
		width: min(calc(100% - 30px), var(--container));
	}

	.site-content {
		padding: 40px 0;
	}

	.inside-header {
		min-height: 80px;
	}

	.site-logo img,
	.custom-logo {
		max-width: 125px;
	}

	.main-navigation ul {
		gap: 0;
		display: block;
	}

	.main-navigation .menu-toggle {
		display: flex;
	}

	.woocommerce ul.products {
		grid-template-columns: repeat(1, minmax(100px, 1fr));
		gap: 15px;
		margin-top: 30px;
	}

	.woocommerce ul.products li.product {
		padding: 20px 12px 15px;
	}

	.woocommerce ul.products li.product a img {
		height: 180px;
		margin-bottom: 15px;
	}

	.woocommerce ul.products li.product .woocommerce-loop-product__title {
		min-height: 48px;
		font-size: 15px;
	}

	.woocommerce ul.products li.product .price {
		margin: 12px 0;
		font-size: 20px;
	}

	.woocommerce ul.products li.product .button {
		padding-left: 12px;
		padding-right: 12px;
		font-size: 12px;
	}

	.woocommerce div.product div.images,
	.woocommerce div.product div.summary {
		float: none;
		width: 100%;
	}

	.woocommerce div.product div.images {
		margin-bottom: 25px;
	}

	.woocommerce div.product div.summary {
		padding-top: 0;
		margin-bottom: 45px;
	}

	.woocommerce div.product form.cart {
		align-items: stretch;
	}

	.woocommerce div.product form.cart .button {
		flex: 1;
	}

	.woocommerce div.product .woocommerce-tabs ul.tabs {
		justify-content: flex-start;
		overflow-x: auto;
		padding: 12px 15px;
		white-space: nowrap;
	}

	.woocommerce div.product .woocommerce-tabs ul.tabs li a {
		padding: 9px 14px;
		font-size: 13px;
	}

	.woocommerce-checkout .col2-set {
		grid-template-columns: 1fr;
	}

	.woocommerce-account .entry-title {
		margin-bottom: 30px;
		font-size: 42px;
	}

	.woocommerce-account .woocommerce {
		display: block;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation {
		width: 100%;
		margin-bottom: 30px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		display: flex;
		gap: 7px;
		overflow-x: auto;
		padding-bottom: 8px;
		scrollbar-width: none;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul::-webkit-scrollbar {
		display: none;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation li {
		flex: 0 0 auto;
		border: 0;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation a {
		padding: 11px 17px;
		background: #eee;
		border-radius: 999px;
		white-space: nowrap;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
		background: var(--navy);
		color: #fff;
	}

	.woocommerce-account .woocommerce-MyAccount-content {
		width: 100%;
		padding: 25px 20px;
	}

	.woocommerce-account .woocommerce-Addresses {
		grid-template-columns: 1fr;
	}

	.woocommerce-account:not(.logged-in) .u-columns {
		grid-template-columns: 1fr;
	}

	.grid-2,
	.grid-3 {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 60px 0;
	}

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {



	.woocommerce ul.products {}
	

	.woocommerce ul.products {
		gap: 10px;
	}

	.woocommerce ul.products li.product {
		padding: 17px 9px 12px;
	}

	.woocommerce ul.products li.product a img {
		height: 145px;
	}

	.woocommerce ul.products li.product .woocommerce-loop-product__title {
		font-size: 14px;
	}

	.woocommerce ul.products li.product .button {
		min-height: 40px;
		font-size: 11px;
	}

}




.woocommerce div.product div.images .woocommerce-product-gallery__image a {
    display: block;
    outline-offset: -2px
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    background: #fff;
    border: none;
    box-sizing: content-box;
    border-radius: 100%;
    cursor: pointer;
    font-size: 2em;
    height: 36px;
    padding: 0;
    position: absolute;
    right: .5em;
    text-indent: -9999px;
    top: .5em;
    width: 36px;
    z-index: 99
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger::before {
    border: 2px solid #000;
    border-radius: 100%;
    box-sizing: content-box;
    content: "";
    display: block;
    height: 10px;
    left: 9px;
    top: 9px;
    position: absolute;
    width: 10px
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger::after {
    background: #000;
    border-radius: 6px;
    box-sizing: content-box;
    content: "";
    display: block;
    height: 8px;
    left: 22px;
    position: absolute;
    top: 19px;
    transform: rotate(-45deg);
    width: 2px
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger span[aria-hidden=true] {
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    left: 50%;
    margin: -1px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    width: 1px
}





/* =========================================================
   WOOCOMMERCE REVIEWS
========================================================= */

#reviews {
	margin-top: 70px;
}

#reviews h2,
#reviews h3 {
	color: var(--text);
	font-weight: 700;
}

#reviews #comments {
	margin-bottom: 50px;
}


/* REVIEW LIST */

.woocommerce #reviews #comments ol.commentlist {
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce #reviews #comments ol.commentlist li {
	margin: 0 0 22px;
	padding: 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment_container {
	display: flex;
	align-items: flex-start;
	gap: 20px;

	padding: 25px 28px;

	background: #f7f7f7;
	border: 1px solid #ececec;
	border-radius: 16px;

	transition:
		transform .25s ease,
		box-shadow .25s ease;
}

.woocommerce #reviews #comments ol.commentlist li .comment_container:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(0,0,0,.06);
}


/* AVATAR */

.woocommerce #reviews #comments ol.commentlist li img.avatar {
	position: static;
	float: none;

	width: 54px;
	height: 54px;
	margin: 0;

	border: 0;
	border-radius: 50%;
	object-fit: cover;
}


/* REVIEW CONTENT */

.woocommerce #reviews #comments ol.commentlist li .comment-text {
	flex: 1;

	margin: 0;
	padding: 0;

	border: 0;
}


/* AUTHOR */

.woocommerce #reviews #comments ol.commentlist li .meta {
	margin-bottom: 8px;

	color: var(--muted);
	font-size: 13px;
}

.woocommerce #reviews #comments ol.commentlist li .woocommerce-review__author {
	color: var(--text);
	font-size: 15px;
	font-weight: 700;
}


/* REVIEW TEXT */

.woocommerce #reviews #comments ol.commentlist li .description {
	color: var(--text);
	font-size: 15px;
	line-height: 1.6;
}

.woocommerce #reviews #comments ol.commentlist li .description p:last-child {
	margin-bottom: 0;
}


/* =========================================================
   STARS
========================================================= */

.woocommerce .star-rating {
	position: relative;

	width: 6.4em;
	height: 1.2em;

	margin-bottom: 10px;

	color: #d6a600;

	font-family: "star";
	font-size: 16px;
	line-height: 1;
}

.woocommerce .star-rating::before {
	color: #ddd;
}

.woocommerce .star-rating span::before {
	color: #d6a600;
}


/* STAR RATING INSIDE REVIEW */

.woocommerce #reviews #comments ol.commentlist li .star-rating {
	float: none;
	margin: 0 0 10px;
}


/* =========================================================
   REVIEW FORM
========================================================= */

#review_form_wrapper {
	margin-top: 50px;
	padding: 35px;

	background: #f7f7f7;
	border-radius: 18px;
}

#review_form_wrapper .comment-reply-title {
	display: block;
	margin-bottom: 25px;

	color: var(--text);
	font-size: 28px;
	font-weight: 700;
}

#review_form_wrapper .comment-form {
	display: grid;
	gap: 18px;
}

#review_form_wrapper .comment-form p {
	margin: 0;
}


/* TEXTAREA */

#review_form_wrapper textarea {
	min-height: 150px;
}


/* =========================================================
   CLICKABLE STAR SELECTOR
========================================================= */

.woocommerce #review_form #respond p.stars {
	margin: 10px 0 20px;
}

.woocommerce #review_form #respond p.stars a {
	position: relative;

	display: inline-block;

	width: 28px;
	height: 28px;

	margin-right: 3px;

	color: #d8d8d8;

	font-size: 0;

	transition:
		transform .2s ease,
		color .2s ease;
}

.woocommerce #review_form #respond p.stars a::before {
content: "★" !important;
	position: absolute;
	inset: 0;

	display: flex;
	align-items: center;
	justify-content: center;

	font-family: Arial, Helvetica, sans-serif;
	font-size: 25px;

	color: #d8d8d8;
}

.woocommerce #review_form #respond p.stars a:hover {
	transform: scale(1.12);
}

.woocommerce #review_form #respond p.stars:hover a::before {
	color: #d6a600;
}

.woocommerce #review_form #respond p.stars a:hover ~ a::before {
	color: #d8d8d8;
}


/* SELECTED STARS */

.woocommerce #review_form #respond p.stars.selected a::before {
	color: #d6a600;
}

.woocommerce #review_form #respond p.stars.selected a.active ~ a::before {
	color: #d8d8d8;
}


/* =========================================================
   REVIEW SUBMIT BUTTON
========================================================= */

#review_form_wrapper input[type="submit"] {
	min-width: 170px;
	margin-top: 8px;

	background: var(--navy);
	color: #fff;
}

#review_form_wrapper input[type="submit"]:hover {
	background: var(--navy-dark);
}


/* =========================================================
   REVIEW SUMMARY
========================================================= */

.woocommerce-review-link {
	color: var(--muted);
	font-size: 13px;
	font-weight: 600;
}

.woocommerce-review-link:hover {
	color: var(--navy);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

	.woocommerce #reviews #comments ol.commentlist li .comment_container {
		padding: 20px;
		gap: 15px;
	}

	.woocommerce #reviews #comments ol.commentlist li img.avatar {
		width: 44px;
		height: 44px;
	}

	#review_form_wrapper {
		padding: 25px 20px;
	}

	#review_form_wrapper .comment-reply-title {
		font-size: 24px;
	}

}


.product-template-default .featured-image {display:none}









.menu-cart {
    text-align: center;
    position: relative;
}
.menu-cart-count {font-size:1rem;display:inline-block;font-size:.58rem;background-color: #a60a0e;border-radius:20px;padding: 5px;margin-top: -10px;transform: translateY(-9px) translateX(-7px);position: absolute;color: white;}
.menu-cart-total  {
    display: block;
    font-weight: normal;
    font-size: smaller;
    margin-top: 4px;
}



a.logo {
    background-image: url(https://flaro.sk/wp-content/uploads/2026/07/logo-flaro.svg);
    display: inline-block;
    width: 200px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}



/* WooCommerce ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ oprava tlaÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âidla ZobraziÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥ heslo */
.woocommerce form .password-input {
	position: relative;
	display: block;
	width: 100%;
}

.woocommerce form .password-input input {
	width: 100%;
	padding-right: 55px !important;
}

.woocommerce form .show-password-input {
	position: absolute !important;
	top: 50% !important;
	right: 14px !important;
	left: auto !important;
	bottom: auto !important;

	width: 34px !important;
	height: 34px !important;
	min-width: 34px !important;
	padding: 0 !important;
	margin: 0 !important;

	display: flex !important;
	align-items: center;
	justify-content: center;

	transform: translateY(-50%) !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #17172b !important;
	cursor: pointer;
	font-size: 0 !important;
	z-index: 5;
}

/* Ikona oka */
.woocommerce form .show-password-input::after {
	content: "";
	width: 18px;
	height: 18px;
	display: block;
	background-color: currentColor;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 5c5.5 0 9.5 5.2 9.5 7s-4 7-9.5 7S2.5 13.8 2.5 12 6.5 5 12 5Zm0 2C8.2 7 5.2 10.2 4.6 12c.6 1.8 3.6 5 7.4 5s6.8-3.2 7.4-5c-.6-1.8-3.6-5-7.4-5Zm0 2.5A2.5 2.5 0 1 1 12 14.5a2.5 2.5 0 0 1 0-5Z'/%3E%3C/svg%3E");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 5c5.5 0 9.5 5.2 9.5 7s-4 7-9.5 7S2.5 13.8 2.5 12 6.5 5 12 5Zm0 2C8.2 7 5.2 10.2 4.6 12c.6 1.8 3.6 5 7.4 5s6.8-3.2 7.4-5c-.6-1.8-3.6-5-7.4-5Zm0 2.5A2.5 2.5 0 1 1 12 14.5a2.5 2.5 0 0 1 0-5Z'/%3E%3C/svg%3E");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
}

.woocommerce form .show-password-input:hover {
	background: #f1f1f3 !important;
	color: #000 !important;
}


.flaro-care.top-banner {
    background-image: url(https://flaro.sk/wp-content/uploads/2026/07/flaro-background-eshop-clothing-cleaning-material-for-firemen-specialized-cleaning-technology-certified-safe.jpg)!important;
    background-position: top;
    background-size: 100%;
    background-repeat: no-repeat;
    background-color: #dcd8d7;
    }



.flaro-care {
	--flaro-black: #171717;
	--flaro-white: #ffffff;
	--flaro-red: #c81717;
	--flaro-beige: #dcd8d7;
	--flaro-blue: #168fff;

	position: relative;
	overflow: hidden;
	padding: 110px 24px 100px;
	background:
		linear-gradient(
			to bottom,
			var(--flaro-beige) 0,
			var(--flaro-beige) 55%,
			var(--flaro-white) 55%,
			var(--flaro-white) 100%
		);
	color: var(--flaro-black);
}

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

.flaro-care__container {
	width: min(1380px, 100%);
	margin: 0 auto;
}

.flaro-care__header {
	max-width: 720px;
	margin: 0 auto 90px;
	text-align: center;
}

.flaro-care__eyebrow {
	display: inline-block;
	margin-bottom: 18px;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.flaro-care__header h2 {
	margin: 0;
	font-size: clamp(42px, 5vw, 72px);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.045em;
}

.flaro-care__header p {
	max-width: 660px;
	margin: 30px auto 0;
	font-size: 18px;
	line-height: 1.45;
}

.flaro-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-height: 54px;
	margin-top: 34px;
	padding: 12px 24px 12px 28px;
	/* border: 1px solid var(--flaro-blue); */
	border-radius: 999px;
	background: var(--flaro-white);
	color: var(--flaro-black);
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition:
		transform 0.25s ease,
		background 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease;
}

.flaro-btn svg {
	width: 18px;
	height: 18px;
	color: var(--flaro-red);
	transition: transform 0.25s ease;
}

.flaro-btn:hover {
	transform: translateY(-3px);
	border-color: var(--flaro-black);
	background: var(--flaro-black);
	color: var(--flaro-white);
}

.flaro-btn:hover svg {
	transform: translateX(4px);
}

.flaro-care__products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(24px, 4vw, 72px);
	align-items: stretch;
}

.flaro-product-card {
	position: relative;
	min-height: 590px;
	overflow: hidden;
	background-color: #292725;
	background-position: center;
	/* background-size: 2000px; */
	background-repeat: no-repeat;
	/* isolation: isolate; */
	background-blend-mode: multiply;
	background-color: rgba(0,0,0,0.3);
}

/* Replace only these URLs later */
.flaro-product-card--f2 {
	background-image:
		linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.2) 0%,
			rgba(0, 0, 0, 0.08) 42%,
			rgba(0, 0, 0, 0.6) 100%
		),
		url("https://flaro.sk/wp-content/uploads/2026/07/firemenslovakia-flaro-sk-eshop-cleaning-technology-for-firemen.jpg");
	/* background-size: 30px; */
	background-image: url("https://flaro.sk/wp-content/uploads/2026/07/firemenslovakia-flaro-sk-eshop-cleaning-technology-for-firemen.jpg");
	background-size: 390%;
	background-position: 75% 25%;
}

.flaro-product-card--f3 {
	background-image:
		linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.2) 0%,
			rgba(0, 0, 0, 0.08) 42%,
			rgba(0, 0, 0, 0.6) 100%
		),
		url("https://flaro.sk/wp-content/uploads/2026/07/firemenslovakia-flaro-sk-eshop-cleaning-technology-for-firemen.jpg");
	background-image: url(https://flaro.sk/wp-content/uploads/2026/07/firemenslovakia-flaro-sk-eshop-cleaning-technology-for-firemen.jpg);
	background-size: 390%;
	background-position: 7% 7%;
}

.flaro-product-card--f6 {
	background-image:
		linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.2) 0%,
			rgba(0, 0, 0, 0.08) 42%,
			rgba(0, 0, 0, 0.6) 100%
		),
		url("https://flaro.sk/wp-content/uploads/2026/07/firemenslovakia-flaro-sk-eshop-cleaning-technology-for-firemen.jpg");
	background-image: url(https://flaro.sk/wp-content/uploads/2026/07/firemenslovakia-flaro-sk-eshop-cleaning-technology-for-firemen.jpg);
	background-size: 390%;
	background-position: 63% 77%;
}

.flaro-product-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.1) 0%,
			rgba(0, 0, 0, 0.08) 45%,
			rgba(0, 0, 0, 0.72) 100%
		);
	transition: background 0.35s ease;
}

.flaro-product-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background: inherit;
	background-position: center;
	background-size: cover;
	transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.flaro-product-card__link {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 590px;
	padding: 42px 40px 36px;
	color: var(--flaro-white);
	text-decoration: none;
}

.flaro-product-card__content {
	max-width: 320px;
}

.flaro-product-card__number {
	display: inline-block;
	margin-bottom: 24px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	opacity: 0.7;
}

.flaro-product-card h3 {
	margin: 0;
	font-size: clamp(34px, 3vw, 48px);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.045em;
	color: white;
}

.flaro-product-card p {
	max-width: 310px;
	margin: 22px 0 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35;
}

.flaro-product-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	gap: 14px;
	min-height: 48px;
	padding: 10px 20px 10px 24px;
	border-radius: 999px;
	background: var(--flaro-white);
	color: var(--flaro-black);
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	transition:
		transform 0.25s ease,
		background 0.25s ease,
		color 0.25s ease;
}

.flaro-product-card__button svg {
	width: 18px;
	height: 18px;
	color: var(--flaro-red);
	transition: transform 0.25s ease;
}

.flaro-product-card:hover::after {
	transform: scale(1.055);
}

.flaro-product-card:hover::before {
	background:
		linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.16) 0%,
			rgba(0, 0, 0, 0.18) 45%,
			rgba(0, 0, 0, 0.82) 100%
		);
}

.flaro-product-card:hover .flaro-product-card__button {
	transform: translateY(-3px);
	background: var(--flaro-red);
	color: var(--flaro-white);
}

.flaro-product-card:hover .flaro-product-card__button svg {
	transform: translateX(4px);
	color: var(--flaro-white);
}

@media (max-width: 1050px) {
	.flaro-care {
		background:
			linear-gradient(
				to bottom,
				var(--flaro-beige) 0,
				var(--flaro-beige) 42%,
				var(--flaro-white) 42%,
				var(--flaro-white) 100%
			);
	}

	.flaro-care__products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.flaro-product-card:last-child {
		grid-column: 1 / -1;
		width: min(520px, 100%);
		justify-self: center;
	}
}

@media (max-width: 700px) {
	.flaro-care {
		padding: 76px 16px 70px;
		background: var(--flaro-beige);
	}

	.flaro-care__header {
		margin-bottom: 55px;
	}

	.flaro-care__header h2 br {
		display: none;
	}

	.flaro-care__header p {
		font-size: 16px;
	}

	.flaro-care__products {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.flaro-product-card,
	.flaro-product-card__link {
		min-height: 520px;
	}

	.flaro-product-card:last-child {
		grid-column: auto;
		width: 100%;
	}

	.flaro-product-card__link {
		padding: 34px 26px 28px;
	}

	.flaro-product-card h3 {
		font-size: 38px;
	}
}



.woocommerce-breadcrumb {
    text-align: center;
    /* display: inline-block; */
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}




.flaro-reviews {
	--flaro-navy: #0b0d3d;
	--flaro-red: #bb201b;
	--flaro-grey: #cfd0d3;
	--flaro-white: #ffffff;

	padding: 48px 24px 42px;
	background: var(--flaro-white);
	color: var(--flaro-navy);
	overflow: hidden;
}

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

.flaro-reviews__container {
	width: min(1240px, 100%);
	margin: 0 auto;
}

.flaro-reviews__header {
	margin-bottom: 45px;
	text-align: center;
}

.flaro-reviews__header h2 {
	margin: 0;
	font-size: clamp(30px, 3vw, 42px);
	line-height: 0.95;
	letter-spacing: -0.04em;
}

.flaro-reviews__header span,
.flaro-reviews__header strong {
	display: block;
}

.flaro-reviews__header span {
	font-weight: 400;
}

.flaro-reviews__header strong {
	font-weight: 800;
}

.flaro-reviews__slider {
	display: grid;
	grid-template-columns: 60px minmax(0, 1fr) 60px;
	align-items: center;
	gap: 30px;
}

.flaro-reviews__viewport {
	overflow: hidden;
}

.flaro-reviews__track {
	display: flex;
	transition: transform 0.45s cubic-bezier(0.22, 0.75, 0.25, 1);
}

.flaro-review {
	flex: 0 0 100%;
	padding: 10px 20px;
	text-align: center;
}

.flaro-review blockquote {
	max-width: 700px;
	margin: 0 auto;
}

.flaro-review p {
	margin: 0;
	font-size: clamp(17px, 1.5vw, 21px);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.02em;
}

.flaro-review footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 24px;
}

.flaro-review footer strong {
	font-size: 20px;
	line-height: 1.15;
}

.flaro-review footer span {
	margin-top: 2px;
	font-size: 17px;
	line-height: 1.25;
	display: none;
}

.flaro-reviews__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--flaro-navy);
	cursor: pointer;
	transition:
		background 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.flaro-reviews__arrow svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.flaro-reviews__arrow:hover {
	background: var(--flaro-navy);
	color: var(--flaro-white);
	transform: scale(1.05);
}

.flaro-reviews__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-top: 26px;
}

.flaro-reviews__dots button {
	width: 11px;
	height: 11px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--flaro-grey);
	cursor: pointer;
	transition:
		transform 0.25s ease,
		background 0.25s ease;
	min-height: initial;
}

.flaro-reviews__dots button:hover {
	transform: scale(1.25);
}

.flaro-reviews__dots button.is-active {
	background: var(--flaro-red);
	transform: scale(1.08);
}

@media (max-width: 700px) {
	.flaro-reviews {
		padding: 65px 16px 50px;
	}

	.flaro-reviews__header {
		margin-bottom: 35px;
	}

	.flaro-reviews__slider {
		grid-template-columns: 42px minmax(0, 1fr) 42px;
		gap: 6px;
	}

	.flaro-reviews__arrow {
		width: 42px;
		height: 42px;
	}

	.flaro-reviews__arrow svg {
		width: 23px;
		height: 23px;
	}

	.flaro-review {
		padding: 5px 8px;
	}

	.flaro-review p {
		font-size: 16px;
		line-height: 1.25;
	}

	.flaro-review footer strong {
		font-size: 18px;
	}

	.flaro-review footer span {
		font-size: 15px;
	}
}






.flaro-news {
	--flaro-navy: #07083f;
	--flaro-white: #ffffff;
	--flaro-light: #f0eee8;

	padding: 90px 24px;
	background: var(--flaro-white);
	color: var(--flaro-navy);
}

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

.flaro-news__container {
	display: grid;
	grid-template-columns: 230px minmax(0, 750px);
	gap: 44px;
	align-items: center;
	width: min(1040px, 100%);
	margin: 0 auto;
}

.flaro-news__intro {
	align-self: center;
}

.flaro-news__intro h2 {
	margin: 0 0 82px;
	font-size: 28px;
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -0.03em;
	/* text-align: center; */
}

.flaro-news__intro h2 span,
.flaro-news__intro h2 strong {
	display: block;
}

.flaro-news__intro h2 strong {
	font-weight: 800;
}

.flaro-news__all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 12px 25px;
	border-radius: 999px;
	background: var(--flaro-navy);
	color: var(--flaro-white);
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
	/* margin-left: auto; */
	/* margin-right: auto; */
}

.flaro-news__all:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 26px rgba(7, 8, 63, 0.18);
}

.flaro-news__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.flaro-news-card {
	min-width: 0;
	overflow: hidden;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
}

.flaro-news-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.flaro-news-card__image {
	min-height: 225px;
	background-color: black;
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.flaro-news-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 215px;
	padding: 28px 27px 24px;
}

.flaro-news-card--1 .flaro-news-card__content {
	background: var(--flaro-navy);
	color: var(--flaro-white);
}

.flaro-news-card--2 .flaro-news-card__content {
	background: var(--flaro-light);
	color: var(--flaro-navy);
}

.flaro-news-card h3 {
	margin: 0;
	font-size: clamp(24px, 2.3vw, 29px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.035em;
	color: inherit;
}

.flaro-news-card__excerpt {
	margin-top: 28px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.515;
}

.flaro-news-card__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin-top: auto;
	transform: translateX(-8px);
	transition: transform 0.25s ease;
}

.flaro-news-card__arrow svg {
	width: 26px;
	height: 26px;
}

.flaro-news-card__link:hover .flaro-news-card__image {
	transform: scale(1.045);
}

.flaro-news-card__link:hover .flaro-news-card__arrow {
	transform: translateX(0);
}

.flaro-news__empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: 40px;
	background: var(--flaro-light);
	text-align: center;
}

@media (max-width: 900px) {
	.flaro-news__container {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.flaro-news__intro {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		gap: 30px;
	}

	.flaro-news__intro h2 {
		margin-bottom: 0;
	}
}

@media (max-width: 650px) {
	.flaro-news {
		padding: 65px 16px;
	}

	.flaro-news__intro {
		display: block;
	}

	.flaro-news__intro h2 {
		margin-bottom: 28px;
	}

	.flaro-news__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.flaro-news-card__image {
		min-height: 230px;
	}

	.flaro-news-card__content {
		min-height: 210px;
	}

	.flaro-news-card--2 .flaro-news-card__content {
		background: var(--flaro-navy);
		color: var(--flaro-white);
	}
}




/* =========================================
   CATEGORY / ARCHIVE – FLARO NEWS CARDS
========================================= */

.archive,
.category {
	--flaro-navy: #090b3f;
	--flaro-red: #b3201b;
	--flaro-light: #f2f0eb;
	--flaro-white: #ffffff;
	--flaro-text: #17182d;
	--flaro-muted: #6d6e78;
}

/* Main category layout */
.archive .site-content,
.category .site-content {
	display: block;
	padding: 70px 24px 100px;
}

.archive #primary,
.category #primary {
	width: 100%;
	max-width: none;
}

.archive .site-main,
.category .site-main {
	/* display: grid; */
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 38px;
	width: min(1180px, 100%);
	margin: 0 auto;
}

.category.archive.category-novinky .site-main {display: grid;}

/* Category title */
.archive .page-header,
.category .page-header {
	grid-column: 1 / -1;
	margin: 0 0 15px;
	padding: 0;
	background: transparent;
}

.archive .page-header h1,
.category .page-header h1,
.archive .page-title,
.category .page-title {
	margin: 0;
	color: var(--flaro-navy);
	font-size: clamp(48px, 6vw, 42px);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.055em;
	text-align: center;
}

/* Post card */
.archive article.post,
.category article.post {
	min-width: 0;
	margin: 0;
	overflow: hidden;
	background: var(--flaro-white);
	box-shadow: 0 14px 35px rgba(10, 12, 45, 0.09);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.archive article.post:hover,
.category article.post:hover {
	transform: translateY(-7px);
	box-shadow: 0 22px 48px rgba(10, 12, 45, 0.14);
}

.archive article.post .inside-article,
.category article.post .inside-article {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0;
	background: transparent;
}

/* Image */
.archive .post-image,
.category .post-image {
	order: 1;
	margin: 0 !important;
	overflow: hidden;
	background: #d9d9d9;
}

.archive .post-image a,
.category .post-image a {
	display: block;
}

.archive .post-image img,
.category .post-image img {
	display: block;
	width: 100%;
	height: 340px;
	object-fit: cover;
	object-position: top;
	transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.archive article.post:hover .post-image img,
.category article.post:hover .post-image img {
	transform: scale(1.045);
}

/* Header */
.archive article.post .entry-header,
.category article.post .entry-header {
	order: 2;
	padding: 30px 32px 0;
}

.archive article.post .entry-title,
.category article.post .entry-title {
	margin: 0;
	font-size: clamp(28px, 3vw, 39px);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.archive article.post .entry-title a,
.category article.post .entry-title a {
	color: var(--flaro-navy);
	text-decoration: none;
	transition: color 0.25s ease;
}

.archive article.post .entry-title a:hover,
.category article.post .entry-title a:hover {
	color: var(--flaro-red);
}

/* Date and author */
.archive article.post .entry-header .entry-meta,
.category article.post .entry-header .entry-meta {
	margin-top: 16px;
	color: var(--flaro-muted);
	font-size: 13px;
	line-height: 1.4;
}

.archive article.post .entry-header .entry-meta a,
.category article.post .entry-header .entry-meta a {
	color: inherit;
	text-decoration: none;
}

/* Excerpt */
.archive .entry-summary,
.category .entry-summary {
	order: 3;
	flex: 1;
	margin: 0;
	padding: 22px 32px 30px;
	color: var(--flaro-text);
	font-size: 16px;
	line-height: 1.55;
}

.archive .entry-summary p,
.category .entry-summary p {
	margin: 0;
}

.archive .entry-summary .read-more,
.category .entry-summary .read-more {
	display: inline-flex;
	align-items: center;
	margin-top: 24px;
	padding: 12px 22px;
	border-radius: 999px;
	background: var(--flaro-navy);
	color: var(--flaro-white);
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition:
		transform 0.25s ease,
		background 0.25s ease;
	display: block;
	text-align: center;
	max-width: 200px;
}

.archive .entry-summary .read-more:hover,
.category .entry-summary .read-more:hover {
	transform: translateY(-2px);
	background: var(--flaro-red);
}

/* Bottom meta */
.archive article.post > .inside-article > footer.entry-meta,
.category article.post > .inside-article > footer.entry-meta {
	order: 4;
	margin: 0;
	padding: 0 32px 30px;
	color: var(--flaro-muted);
	font-size: 13px;
	display: none;
}

.archive article.post > .inside-article > footer.entry-meta a,
.category article.post > .inside-article > footer.entry-meta a {
	display: inline-flex;
	align-items: center;
	padding: 8px 13px;
	border-radius: 999px;
	background: var(--flaro-light);
	color: var(--flaro-navy);
	font-weight: 700;
	text-decoration: none;
}

/* Alternate Flaro card */
.archive article.post:nth-of-type(even),
.category article.post:nth-of-type(even) {
	background: var(--flaro-navy);
}

.archive article.post:nth-of-type(even) .entry-title a,
.category article.post:nth-of-type(even) .entry-title a,
.archive article.post:nth-of-type(even) .entry-summary,
.category article.post:nth-of-type(even) .entry-summary {
	color: var(--flaro-white);
}

.archive article.post:nth-of-type(even) .entry-header .entry-meta,
.category article.post:nth-of-type(even) .entry-header .entry-meta {
	color: rgba(255, 255, 255, 0.68);
}

.archive article.post:nth-of-type(even) > .inside-article > footer.entry-meta a,
.category article.post:nth-of-type(even) > .inside-article > footer.entry-meta a {
	background: rgba(255, 255, 255, 0.12);
	color: var(--flaro-white);
}

/* Pagination */
.archive .paging-navigation,
.category .paging-navigation,
.archive .pagination,
.category .pagination {
	grid-column: 1 / -1;
	margin-top: 35px;
}

.archive .nav-links,
.category .nav-links {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.archive .page-numbers,
.category .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border-radius: 999px;
	background: var(--flaro-light);
	color: var(--flaro-navy);
	font-weight: 800;
	text-decoration: none;
}

.archive .page-numbers.current,
.category .page-numbers.current,
.archive .page-numbers:hover,
.category .page-numbers:hover {
	background: var(--flaro-navy);
	color: var(--flaro-white);
}

/* No posts */
.archive .no-results,
.category .no-results {
	grid-column: 1 / -1;
	padding: 50px;
	background: var(--flaro-light);
	text-align: center;
}

/* Tablet */
@media (max-width: 900px) {
	.archive .site-main,
	.category .site-main {
		gap: 24px;
	}

	.archive .post-image img,
	.category .post-image img {
		height: 280px;
	}
}

/* Mobile */
@media (max-width: 680px) {
	.archive .site-content,
	.category .site-content {
		padding: 45px 16px 70px;
	}

	.archive .site-main,
	.category .site-main {
		grid-template-columns: 1fr;
	}

	.archive .page-header,
	.category .page-header {
		margin-bottom: 8px;
	}

	.archive .page-header h1,
	.category .page-header h1 {
		font-size: 50px;
	}

	.archive .post-image img,
	.category .post-image img {
		height: 310px;
	}

	.archive article.post .entry-header,
	.category article.post .entry-header {
		padding: 26px 24px 0;
	}

	.archive .entry-summary,
	.category .entry-summary {
		padding: 20px 24px 26px;
	}

	.archive article.post > .inside-article > footer.entry-meta,
	.category article.post > .inside-article > footer.entry-meta {
		padding: 0 24px 26px;
	}
}




/* ========================================
   SINGLE ARTICLE – FLARO STYLE
======================================== */

.single-post {
	--article-navy: #0b0d3d;
	--article-red: #b5201b;
	--article-light: #f4f3f0;
	--article-border: #dedede;
	--article-text: #22242c;
	--article-muted: #6c6f78;
}

/* Main layout */
.single-post .site-content {
	display: block;
	padding: 70px 24px 100px;
}

.single-post #primary {
	width: 100%;
	max-width: none;
}

.single-post .site-main {
	/* margin: 0; */
}

.single-post article.post {
	width: min(1100px, 100%);
	margin: 0 auto;
	padding: 0;
	background: #fff;
	margin-left: auto;
	margin-right: auto;
}

/* Inner wrapper */
.single-post article.post .inside-article {
	padding: 0;
	background: transparent;
}

/* Featured image */
.single-post .featured-image {
	position: relative;
	overflow: hidden;
	margin: 20px auto;
	border-radius: 0;
	background: #ddd;
}

.single-post .featured-image img {
	display: block;
	width: 100%;
	height: min(68vh, 720px);
	object-fit: cover;
	object-position: top;
	transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.single-post .featured-image:hover img {
	transform: scale(1.02);
}

/* Header */
.single-post .entry-header {
	max-width: 860px;
	margin: 20px auto;
}

.single-post .entry-title {
	margin: 0;
	color: var(--article-navy);
	font-size: clamp(42px, 6vw, 58px);
	font-weight: 800;
	line-height: 1.75;
	letter-spacing: -0.05em;
}

/* Content */
.single-post .entry-content {
	max-width: 860px;
	margin: 0 auto;
	color: var(--article-text);
	font-size: 18px;
	line-height: 1.72;
}

.single-post .entry-content > *:first-child {
	margin-top: 0;
}

.single-post .entry-content p {
	margin: 0 0 1.45em;
}

.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4 {
	color: var(--article-navy);
	font-weight: 800;
	letter-spacing: -0.035em;
}

.single-post .entry-content h2 {
	margin: 1.8em 0 0.7em;
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.05;
}

.single-post .entry-content h3 {
	margin: 1.6em 0 0.65em;
	font-size: clamp(25px, 3vw, 34px);
	line-height: 1.1;
}

.single-post .entry-content a {
	color: var(--article-red);
	font-weight: 700;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.single-post .entry-content a:hover {
	color: var(--article-navy);
}

/* Lead paragraph */
.single-post .entry-content > p:first-child {
	font-size: clamp(20px, 2vw, 25px);
	font-weight: 600;
	line-height: 1.45;
	color: var(--article-navy);
}

/* Lists */
.single-post .entry-content ul,
.single-post .entry-content ol {
	margin: 0 0 1.5em;
	padding-left: 1.4em;
}

.single-post .entry-content li {
	margin-bottom: 0.55em;
}

/* Quote */
.single-post .entry-content blockquote {
	position: relative;
	margin: 50px 0;
	padding: 34px 38px 34px 46px;
	border-left: 5px solid var(--article-red);
	background: var(--article-light);
	color: var(--article-navy);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.45;
}

.single-post .entry-content blockquote p:last-child {
	margin-bottom: 0;
}

/* Images inside article */
.single-post .entry-content img {
	height: auto;
	border-radius: 0;
}

.single-post .entry-content figure {
	margin: 45px 0;
}

.single-post .entry-content figcaption {
	margin-top: 10px;
	color: var(--article-muted);
	font-size: 13px;
	line-height: 1.4;
}

/* Footer meta */
.single-post .entry-meta {
	max-width: 860px;
	margin: 45px auto 0;
	padding-top: 22px;
	border-top: 1px solid var(--article-border);
	color: var(--article-muted);
	font-size: 14px;
}

.single-post .entry-meta a {
	color: var(--article-navy);
	font-weight: 700;
	text-decoration: none;
}

.single-post .entry-meta a:hover {
	color: var(--article-red);
}

/* Hide date/author line above content */
.single-post .entry-header .entry-meta {
	display: none;
}

/* Category links */
.single-post .cat-links,
.single-post .tags-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	display: none;
}

.single-post .cat-links a,
.single-post .tags-links a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--article-light);
	color: var(--article-navy);
	font-size: 13px;
	font-weight: 800;
	transition:
		background 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.single-post .cat-links a:hover,
.single-post .tags-links a:hover {
	transform: translateY(-2px);
	background: var(--article-navy);
	color: #fff;
}

/* Previous / next article */
.single-post .post-navigation {
	max-width: 860px;
	/* margin: 55px auto 0; */
	/* padding-top: 30px; */
	/* border-top: 1px solid var(--article-border); */
}

.single-post .post-navigation .nav-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.single-post .post-navigation a {
	display: flex;
	align-items: center;
	min-height: 110px;
	padding: 24px 26px;
	background: var(--article-light);
	color: var(--article-navy);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.25;
	text-decoration: none;
	transition:
		background 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.single-post .post-navigation a:hover {
	transform: translateY(-3px);
	background: var(--article-navy);
	color: #fff;
}

/* Remove default GP arrow/icon spacing */
.single-post .post-navigation .gp-icon {
	margin: 0 12px 0 0;
}

/* Comments */
.single-post .comments-area {
	max-width: 860px;
	margin: 70px auto 0;
	padding: 40px;
	background: var(--article-light);
}

/* Sidebar safety */
.single-post.right-sidebar #primary,
.single-post.left-sidebar #primary {
	width: 100%;
}

.single-post #right-sidebar,
.single-post #left-sidebar {
	display: none;
}

/* Responsive */
@media (max-width: 900px) {
	.single-post .site-content {
		padding-top: 40px;
	}

	.single-post .featured-image {
		margin-bottom: 32px;
	}

	.single-post .featured-image img {
		height: 55vh;
	}

	.single-post .entry-header,
	.single-post .entry-content,
	.single-post .entry-meta,
	.single-post .post-navigation {
		max-width: 100%;
	}
}

@media (max-width: 650px) {
	.single-post .site-content {
		padding: 24px 16px 70px;
	}

	.single-post .featured-image img {
		height: 420px;
	}

	.single-post .entry-title {
		font-size: 43px;
		line-height: 1;
	}

	.single-post .entry-content {
		font-size: 16px;
		line-height: 1.65;
	}

	.single-post .entry-content > p:first-child {
		font-size: 19px;
	}

	.single-post .entry-content blockquote {
		margin: 35px 0;
		padding: 26px 24px 26px 30px;
		font-size: 19px;
	}

	.single-post .post-navigation .nav-links {
		grid-template-columns: 1fr;
	}
}




/* =========================================
   SINGLE POST – PREVIOUS / NEXT NAVIGATION
========================================= */

.single-post .post-navigation {
	max-width: 860px;
	/* margin: 0px auto 0; */
	/* padding-top: 34px; */
	/* border-top: 0px solid #dedede; */
	display: none;
}

.single-post .post-navigation .nav-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.single-post .post-navigation .nav-previous,
.single-post .post-navigation .nav-next {
	min-width: 0;
}

.single-post .post-navigation .nav-previous:empty,
.single-post .post-navigation .nav-next:empty {
	display: none;
}

.single-post .post-navigation .nav-previous a,
.single-post .post-navigation .nav-next a {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 150px;
	padding: 28px 32px;
	overflow: hidden;

	background: #f2f0eb;
	color: #090b3f;
	text-decoration: none;

	transition:
		transform 0.25s ease,
		background 0.25s ease,
		color 0.25s ease,
		box-shadow 0.25s ease;
}

.single-post .post-navigation .nav-next a {
	align-items: flex-end;
	text-align: right;
}

.single-post .post-navigation .nav-previous a::before,
.single-post .post-navigation .nav-next a::before {
	display: block;
	margin-bottom: 13px;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.6;
}

.single-post .post-navigation .nav-previous a::before {
	content: "Predchádzajúci článok";
}

.single-post .post-navigation .nav-next a::before {
	content: "Nasledujúci článok";
}

.single-post .post-navigation .prev,
.single-post .post-navigation .next {
	display: block;
	font-size: clamp(20px, 2vw, 27px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.03em;
}

/* GeneratePress arrow icons */
.single-post .post-navigation .gp-icon {
	position: absolute;
	top: 50%;
	width: 24px;
	height: 24px;
	margin: 0;
	transform: translateY(-50%);
	transition: transform 0.25s ease;
}

.single-post .post-navigation .nav-previous .gp-icon {
	left: 18px;
}

.single-post .post-navigation .nav-next .gp-icon {
	right: 18px;
}

.single-post .post-navigation .nav-previous a {
	padding-left: 55px;
}

.single-post .post-navigation .nav-next a {
	padding-right: 55px;
}

.single-post .post-navigation a:hover {
	transform: translateY(-4px);
	background: #090b3f;
	color: #ffffff;
	box-shadow: 0 16px 32px rgba(9, 11, 63, 0.14);
}

.single-post .post-navigation .nav-previous a:hover .gp-icon {
	transform: translate(-5px, -50%);
}

.single-post .post-navigation .nav-next a:hover .gp-icon {
	transform: translate(5px, -50%);
}

/* Remove default GeneratePress spacing */
.single-post .post-navigation .nav-previous,
.single-post .post-navigation .nav-next {
	float: none;
	width: auto;
}

@media (max-width: 650px) {
	.single-post .post-navigation {
		margin-top: 42px;
		padding-top: 24px;
	}

	.single-post .post-navigation .nav-links {
		grid-template-columns: 1fr;
	}

	.single-post .post-navigation .nav-previous a,
	.single-post .post-navigation .nav-next a {
		min-height: 125px;
	}

	.single-post .post-navigation .nav-next a {
		align-items: flex-start;
		text-align: left;
		padding-right: 32px;
		padding-left: 55px;
	}

	.single-post .post-navigation .nav-next .gp-icon {
		right: auto;
		left: 18px;
	}

	.single-post .post-navigation .nav-next .gp-icon {
		transform: translateY(-50%) rotate(180deg);
	}
}






.flaro-footer {
	--footer-bg: #000000;
	--footer-text: #ffffff;
	--footer-muted: #b7b7b7;
	--footer-line: rgba(255, 255, 255, 0.45);
	--footer-red: #a9211d;
	--footer-navy: #11142f;
	padding: 18px 24px 42px;
	background: var(--footer-bg);
	color: var(--footer-text);
	margin-top: 10vh;
}

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

.flaro-footer__container {
	width: min(1005px, 100%);
	margin: 0 auto;
}

.flaro-footer__top {
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	align-items: center;
	min-height: 86px;
	border-bottom: 1px solid var(--footer-line);
}

.flaro-footer__contact {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 66px;
	color: var(--footer-text);
	font-size: clamp(21px, 2vw, 25px);
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition:
		color 0.25s ease,
		opacity 0.25s ease;
}

.flaro-footer__contact:first-child {
	border-right: 1px solid var(--footer-line);
}

.flaro-footer__contact:hover {
	color: #d8d8d8;
}

.flaro-footer__socials {
	display: flex;
	align-items: center;
	gap: 22px;
	padding-left: 54px;
}

.flaro-footer__socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: var(--footer-text);
	text-decoration: none;
	transition:
		transform 0.25s ease,
		opacity 0.25s ease;
}

.flaro-footer__socials a:hover {
	transform: translateY(-3px);
	opacity: 0.75;
}

.flaro-footer__socials svg {
	width: 29px;
	height: 29px;
	fill: currentColor;
}

.flaro-footer__socials a:last-child svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
}

.flaro-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding-top: 60px;
}

.flaro-footer__brand {
	display: flex;
	align-items: center;
	gap: 14px;
}

.flaro-footer__logo {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 4px 4px 2px;
	/* border-top: 3px solid var(--footer-text); */
	/* border-bottom: 3px solid var(--footer-text); */
	color: var(--footer-text);
	font-size: 17px;
	font-weight: 900;
	line-height: 0.8;
	letter-spacing: -0.08em;
	text-decoration: none;
	width: 140px;
	height: 60px;
	background-image: url(https://flaro.sk/wp-content/uploads/2026/07/logo-flaro-2.svg);
	background-repeat: no-repeat;
	background-position: center;
}

.flaro-footer__logo strong {
	margin: 0 1px;
	color: var(--footer-red);
	font-size: 1.15em;
}

.flaro-footer__brand p {
	margin: 0;
	color: var(--footer-text);
	font-size: 13px;
	line-height: 1.3;
}

.flaro-footer__links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.flaro-footer__links a {
	position: relative;
	color: var(--footer-text);
	font-size: 13px;
	line-height: 1.4;
	text-decoration: none;
	transition: opacity 0.25s ease;
}

.flaro-footer__links a:hover {
	opacity: 0.7;
}

.flaro-footer__links a:not(:last-child)::after {
	content: "|";
	margin: 0 4px;
	color: var(--footer-muted);
}

@media (max-width: 800px) {
	.flaro-footer__top {
		grid-template-columns: 1fr 1fr;
	}

	.flaro-footer__socials {
		grid-column: 1 / -1;
		justify-content: center;
		padding: 20px 0;
		border-top: 1px solid rgba(255, 255, 255, 0.15);
	}

	.flaro-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
		padding-top: 38px;
	}

	.flaro-footer__links {
		justify-content: flex-start;
	}
}

@media (max-width: 560px) {
	.flaro-footer {
		padding: 20px 18px 34px;
	}

	.flaro-footer__top {
		grid-template-columns: 1fr;
	}

	.flaro-footer__contact {
		min-height: 62px;
		font-size: 20px;
	}

	.flaro-footer__contact:first-child {
		border-right: 0;
		border-bottom: 1px solid var(--footer-line);
	}

	.flaro-footer__brand {
		align-items: flex-start;
		flex-direction: column;
	}

	.flaro-footer__links {
		display: grid;
		gap: 10px;
	}

	.flaro-footer__links a:not(:last-child)::after {
		display: none;
	}
}



.flaro-terms {
	--terms-navy: #090b3f;
	--terms-red: #b5211c;
	--terms-text: #24252d;
	--terms-muted: #686a73;
	--terms-light: #f3f1ed;
	--terms-border: #deddd9;
	--terms-white: #ffffff;

	padding: 90px 24px 110px;
	background: var(--terms-white);
	color: var(--terms-text);
}

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

.flaro-terms__container {
	width: min(1120px, 100%);
	margin: 0 auto;
}

.flaro-terms__header {
	max-width: 900px;
	margin-bottom: 54px;
}

.flaro-terms__label {
	display: block;
	margin-bottom: 20px;
	color: var(--terms-red);
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.flaro-terms__header h1 {
	margin: 0;
	color: var(--terms-navy);
	font-size: clamp(48px, 7vw, 90px);
	font-weight: 800;
	line-height: 0.94;
	letter-spacing: -0.06em;
}

.flaro-terms__header p {
	margin: 26px 0 0;
	color: var(--terms-muted);
	font-size: 18px;
	line-height: 1.5;
}

.flaro-terms__navigation {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 70px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--terms-border);
}

.flaro-terms__navigation a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 9px 16px;
	border-radius: 999px;
	background: var(--terms-light);
	color: var(--terms-navy);
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		background 0.2s ease,
		color 0.2s ease;
}

.flaro-terms__navigation a:hover {
	transform: translateY(-2px);
	background: var(--terms-navy);
	color: var(--terms-white);
}

.flaro-terms__content {
	width: min(900px, 100%);
	margin: 0 auto;
}

.flaro-terms__section {
	position: relative;
	margin-bottom: 75px;
	padding-left: 105px;
	scroll-margin-top: 40px;
}

.flaro-terms__number {
	position: absolute;
	top: 4px;
	left: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 34px;
	border-top: 2px solid var(--terms-navy);
	color: var(--terms-navy);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.flaro-terms__section h2 {
	margin: 0 0 28px;
	color: var(--terms-navy);
	font-size: clamp(30px, 4vw, 46px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.045em;
}

.flaro-terms__section h3 {
	margin: 42px 0 18px;
	color: var(--terms-navy);
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.flaro-terms__section p {
	margin: 0 0 20px;
	font-size: 16px;
	line-height: 1.72;
}

.flaro-terms__section a {
	color: var(--terms-red);
	font-weight: 700;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.flaro-terms__section ul,
.flaro-terms__section ol {
	margin: 0 0 25px;
	padding-left: 22px;
}

.flaro-terms__section li {
	margin-bottom: 10px;
	padding-left: 5px;
	font-size: 16px;
	line-height: 1.65;
}

.flaro-terms__company {
	margin: 30px 0;
	padding: 12px 30px;
	background: var(--terms-light);
}

.flaro-terms__company dl {
	margin: 0;
}

.flaro-terms__company dl > div {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	gap: 25px;
	padding: 18px 0;
	border-bottom: 1px solid var(--terms-border);
}

.flaro-terms__company dl > div:last-child {
	border-bottom: 0;
}

.flaro-terms__company dt {
	color: var(--terms-muted);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.flaro-terms__company dd {
	margin: 0;
	color: var(--terms-navy);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
}

.flaro-terms__notice {
	margin: 30px 0;
	padding: 28px 30px;
	border-left: 5px solid var(--terms-red);
	background: var(--terms-navy);
	color: var(--terms-white);
}

.flaro-terms__notice strong {
	display: block;
	margin-bottom: 8px;
	font-size: 21px;
}

.flaro-terms__notice p {
	margin: 0;
	color: var(--terms-white);
}

.flaro-withdrawal {
	padding: 36px;
	border: 1px solid var(--terms-border);
	background: var(--terms-light);
}

.flaro-withdrawal__line {
	min-height: 70px;
	border-bottom: 1px solid var(--terms-muted);
}

.flaro-withdrawal__blank {
	display: inline-block;
	min-width: 230px;
	height: 22px;
	margin-left: 8px;
	border-bottom: 1px solid var(--terms-muted);
	vertical-align: bottom;
}

.flaro-withdrawal__signatures {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-top: 50px;
}

@media print {
	.flaro-terms {
		padding: 0;
	}

	.flaro-terms__navigation {
		display: none;
	}

	.flaro-terms__section {
		break-inside: avoid;
	}
}

@media (max-width: 700px) {
	.flaro-terms {
		padding: 65px 16px 80px;
	}

	.flaro-terms__navigation {
		margin-bottom: 50px;
	}

	.flaro-terms__section {
		margin-bottom: 60px;
		padding-left: 0;
		padding-top: 52px;
	}

	.flaro-terms__number {
		top: 0;
	}

	.flaro-terms__company {
		padding: 8px 22px;
	}

	.flaro-terms__company dl > div {
		grid-template-columns: 1fr;
		gap: 7px;
	}

	.flaro-withdrawal {
		padding: 25px 20px;
	}

	.flaro-withdrawal__blank {
		display: block;
		width: 100%;
		min-width: 0;
		margin: 8px 0 0;
	}

	.flaro-withdrawal__signatures {
		grid-template-columns: 1fr;
	}
}



/* 404 page – search form */
.error404 .search-form {
	display: flex;
	align-items: stretch;
	width: min(760px, 100%);
	margin-top: 28px;
}

.error404 .search-form label {
	display: block;
	flex: 1;
	margin: 0;
}

.error404 .search-form .search-field {
	width: 100%;
	height: 56px;
	margin: 0;
	padding: 0 20px;

	border: 1px solid #dedede;
	border-right: 0;
	border-radius: 999px 0 0 999px;

	background: #ffffff;
	color: #0b0d3d;
	font-size: 16px;
	line-height: 1;
	box-shadow: none;
	outline: none;
}

.error404 .search-form .search-field:focus {
	border-color: #0b0d3d;
	box-shadow: inset 0 0 0 1px #0b0d3d;
}

.error404 .search-form .search-submit {
	position: static !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;

	flex: 0 0 64px;
	width: 64px;
	height: 56px;
	min-width: 64px;
	margin: 0;
	padding: 0;

	border: 1px solid #0b0d3d;
	border-radius: 0 999px 999px 0;
	background: #0b0d3d;
	color: #ffffff;

	cursor: pointer;
	box-shadow: none;
	transform: none !important;

	transition:
		background 0.25s ease,
		transform 0.25s ease;
}

.error404 .search-form .search-submit:hover {
	background: #b5211c;
	border-color: #b5211c;
}

.error404 .search-form .search-submit .gp-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}

.error404 .search-form .search-submit svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}

/* Remove broken default spacing */
.error404 .search-form button::before,
.error404 .search-form button::after {
	display: none !important;
	content: none !important;
}

@media (max-width: 600px) {
	.error404 .search-form {
		width: 100%;
	}

	.error404 .search-form .search-field,
	.error404 .search-form .search-submit {
		height: 52px;
	}

	.error404 .search-form .search-submit {
		flex-basis: 58px;
		width: 58px;
		min-width: 58px;
	}
}


/* =========================================
   SEARCH RESULTS – FLARO STYLE
========================================= */

.search-results {
	--search-navy: #090b3f;
	--search-red: #b5211c;
	--search-light: #f2f0eb;
	--search-white: #ffffff;
	--search-text: #22242d;
	--search-muted: #6f7078;
}

.search-results .site-content {
	display: block;
	padding: 70px 24px 100px;
}

.search-results #primary {
	width: 100%;
	max-width: none;
}

.search-results .site-main {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	width: min(1280px, 100%);
	margin: 0 auto;
}

/* Search page title */
.search-results .page-header {
	grid-column: 1 / -1;
	margin: 0 0 20px;
	padding: 0;
	background: transparent;
}

.search-results .page-title {
	margin: 0;
	color: var(--search-navy);
	font-size: clamp(24px, 6vw, 36px);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.05em;
	text-align: center;
}

/* Result card */
.search-results article {
	min-width: 0;
	margin: 0;
	overflow: hidden;
	background: var(--search-white);
	box-shadow: 0 12px 34px rgba(9, 11, 63, 0.09);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.search-results article:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 46px rgba(9, 11, 63, 0.14);
}

.search-results article .inside-article {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0;
	background: transparent;
}

/* Image */
.search-results article .post-image {
	order: 1;
	margin: 0 !important;
	overflow: hidden;
	background: #ececec;
}

.search-results article .post-image a {
	display: block;
}

.search-results article .post-image img {
	display: block;
	width: 100%;
	height: 300px;
	object-fit: contain;
	object-position: center;
	padding: 25px;
	background: #ffffff;
	transition: transform 0.55s ease;
}

.search-results article:hover .post-image img {
	transform: scale(1.045);
}

/* Product images can remain cleaner */
.search-results article.type-product .post-image img {
	object-fit: contain;
	padding: 28px;
}

/* Header */
.search-results article .entry-header {
	order: 2;
	padding: 28px 28px 0;
}

.search-results article .entry-title {
	margin: 0;
	font-size: clamp(24px, 2.4vw, 32px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.search-results article .entry-title a {
	color: var(--search-navy);
	text-decoration: none;
	transition: color 0.25s ease;
}

.search-results article .entry-title a:hover {
	color: var(--search-red);
}

/* Hide date and author meta */
.search-results article .entry-meta {
	display: none;
}

/* Excerpt */
.search-results article .entry-summary {
	order: 3;
	flex: 1;
	margin: 0;
	padding: 20px 28px 30px;
	color: var(--search-text);
	font-size: 15px;
	line-height: 1.55;
}

.search-results article .entry-summary p {
	margin: 0;
}

/* Read more link */
.search-results article .read-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	margin-top: 24px;
	padding: 10px 20px;
	border-radius: 999px;
	background: var(--search-navy);
	color: var(--search-white);
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition:
		transform 0.25s ease,
		background 0.25s ease;
}

.search-results article .read-more:hover {
	transform: translateY(-2px);
	background: var(--search-red);
}

/* Alternate dark card */
.search-results article:nth-of-type(even) {
	background: var(--search-navy);
}

.search-results article:nth-of-type(even) .entry-title a,
.search-results article:nth-of-type(even) .entry-summary {
	color: var(--search-white);
}

.search-results article:nth-of-type(even) .read-more {
	background: var(--search-white);
	color: var(--search-navy);
}

.search-results article:nth-of-type(even) .read-more:hover {
	background: var(--search-red);
	color: var(--search-white);
}

/* Pagination */
.search-results .paging-navigation,
.search-results .pagination {
	grid-column: 1 / -1;
	margin-top: 30px;
}

.search-results .nav-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.search-results .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border-radius: 999px;
	background: var(--search-light);
	color: var(--search-navy);
	font-weight: 800;
	text-decoration: none;
}

.search-results .page-numbers.current,
.search-results .page-numbers:hover {
	background: var(--search-navy);
	color: var(--search-white);
}

/* Tablet */
@media (max-width: 1000px) {
	.search-results .site-main {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.search-results article .post-image img {
		height: 280px;
	}
}

/* Mobile */
@media (max-width: 680px) {
	.search-results .site-content {
		padding: 45px 16px 70px;
	}

	.search-results .site-main {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.search-results .page-title {
		font-size: 21px;
	}

	.search-results article .post-image img {
		height: 280px;
	}

	.search-results article .entry-header {
		padding: 24px 22px 0;
	}

	.search-results article .entry-summary {
		padding: 18px 22px 26px;
	}
}


.decontamination-process {
    display: grid;
    grid-template-columns: 1fr 70px 1fr 70px 1fr;
    align-items: center;
    gap: 24px;
    padding: 40px;
    background: #dcd8d7;
    /* border: 1px solid #e7e9ee; */
    /* border-radius: 22px; */
    box-shadow: 0 16px 40px rgba(18, 28, 45, 0.08);
    padding-bottom: 120px;
}

.process-step {
    min-width: 0;
    text-align: center;
}

.process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 118px;
    margin: 0 auto 18px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(18, 28, 45, 0.08);
}

.process-icon svg {
    width: 38px;
    height: 38px;
}

.process-icon-warning {
    color: #b71922;
    /* background: #fff9e8; */
}

.process-icon-cleaning {
    color: #10102f;
    /* background: #eafbf7; */
    background: transparent;
    box-shadow: none;
}

.process-icon-health {
    color: #b71922;
    /* background: #fff0f2; */
}

.process-content strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 20px;
    line-height: 1.25;
}

.process-content p {
    max-width: 260px;
    margin: 0 auto;
    color: var(--text);
    /* font-size: 14px; */
    /* line-height: 1.55; */
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b71922;
}

.process-arrow svg {
    width: 48px;
    height: 24px;
}

.process-icon-cleaning .f-icon{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    font-weight:800;
    font-family:inherit;
    line-height:1;
    font-size: 0;
    height: 91px;
    width: 120px;
    display: block;
    background-image: url(https://flaro.sk/wp-content/uploads/2026/08/logo-rada-f-professional.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

@media (max-width: 850px) {
    .decontamination-process {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 22px;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .process-content p {
        max-width: 340px;
    }
}

@media (max-width: 480px) {
    .decontamination-process {
        /* border-radius: 16px; */
        padding: 26px 18px;
        padding-bottom: 100px;
    }

    .process-icon {
        width: 60px;
        height: 60px;
        border-radius: 17px;
    }

    .process-icon svg {
        width: 33px;
        height: 33px;
    }

    .process-content strong {
        font-size: 18px;
    }

    .process-content p {
        font-size: 13px;
    }
}










/* ====================== lines button ==================================================*/

.lines-button {
	padding: 0;
	/*! transition: .7s; */
	cursor: pointer;
	user-select: none;
	/* border-radius: .57143rem; */
	/* */
	background: transparent;
	border: none;
	position: absolute;
	/* z-index: 999999999999999991; */
	outline: none;
	margin-left: 0;
	/*! padding-top: 16px; */
	width: 50px;
	/*! height: 8vh; */
	min-height: 50px;
	text-align: right;
	margin-left: auto;
	margin-right: auto;
	display: inline-block;
	float: right;
	transition: all .5s;
	z-index: 9;
	/* margin-top: 17px; */
	right: 15px;
	/* top: 12px; */
	/* display: block!important; */
	background-color: white;
	border-radius: 40px;
}
.lines-button:hover {
	opacity: 1;
	/* border-bottom: 1px solid #4ABDAB; */
	background: white;
}
.lines-button:active {
	transition: 0;
}
.clicked .lines, .clicked .lines:before, .clicked .lines:after {
	background: #fff;
}
.lines {
	display: inline-block;
	width: 25px;
	height: 2px;
	background: rgba(40, 40, 40, 1);
	background: black;
	border-radius: .28571rem;
	/*! transition: .5s; */
	position: relative;
	right: 12px;
	top: -4px;
	/* box-shadow: 1px 1px rgba(0,0,0,0.4); */
}
.lines:before, .lines:after {
	display: inline-block;
	width: 25px;
	height: 2px;
	/* background: #176ef8; */
	background: black;
	border-radius: .28571rem;
	transition: .3s;
	position: absolute;
	left: 0;
	content: '';
	-webkit-transform-origin: .28571rem center;
	transform-origin: .28571rem center;
	/* background: rgba(40,40,40,1); */
	right: 40px;
	/* box-shadow: 1px 1px rgba(0,0,0,0.4); */
}
.lines:before {
	top: 8px;
}
.lines:after {
	top: -8px;
}
.lines-button:hover .lines:before {
	width: 25px;
}
.lines-button:hover .lines:after {
	width: 25px;
}
.lines-button.closed {
	/* -webkit-transform: scale3d(0.8,0.8,0.8); */
	/* transform: scale3d(0.8,0.8,0.8); */
}
.lines-button.arrow.closed .lines:before, .lines-button.arrow.closed .lines:after {
	top: 0;
	width: 2.22222rem;
}
.lines-button.arrow.closed .lines:before {
	-webkit-transform: rotate3d(0, 0, 1, 40deg);
	transform: rotate3d(0, 0, 1, 40deg);
}
.lines-button.arrow.closed .lines:after {
	-webkit-transform: rotate3d(0, 0, 1, -40deg);
	transform: rotate3d(0, 0, 1, -40deg);
}
.lines-button.arrow-up.closed {
	-webkit-transform: scale3d(0.8, 0.8, 0.8) rotate3d(0, 0, 1, 90deg);
	transform: scale3d(0.8, 0.8, 0.8) rotate3d(0, 0, 1, 90deg);
}
.lines-button.minus.closed .lines:before, .lines-button.minus.closed .lines:after {
	-webkit-transform: none;
	transform: none;
	top: 0;
	width: 4rem;
}
.lines-button.x.closed .lines {
	background: transparent;
	box-shadow: 0px 0px 0px;
	right: 14px;
}
.lines-button.x.closed .lines:before, .lines-button.x.closed .lines:after {
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	top: 0;
	width: 22px;
	margin-left: 3px;
}
.lines-button.x.closed .lines:before {
	-webkit-transform: rotate3d(0, 0, 1, 45deg);
	background-color: black;
	transform: rotate3d(0, 0, 1, 45deg);
}
.lines-button.x.closed .lines:after {
	-webkit-transform: rotate3d(0, 0, 1, -45deg);
	transform: rotate3d(0, 0, 1, -45deg);
	/* background-color: #A7E51D; */
	color: white;
}
.lines-button.x2 .lines {
	transition: background .3s .5s ease;
}
.lines-button.x2 .lines:before, .lines-button.x2 .lines:after {
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	transition: top .3s .6s ease, -webkit-transform .3s ease;
	transition: top .3s .6s ease, transform .3s ease;
}
.lines-button.x2.closed .lines {
	transition: background .3s 0 ease;
	background: transparent;
}
.lines-button.x2.closed .lines:before, .lines-button.x2.closed .lines:after {
	transition: top .3s ease, -webkit-transform .3s .5s ease;
	transition: top .3s ease, transform .3s .5s ease;
	top: 0;
	width: 4rem;
}
.lines-button.x2.closed .lines:before {
	-webkit-transform: rotate3d(0, 0, 1, 45deg);
	transform: rotate3d(0, 0, 1, 45deg);
}
.lines-button.x2.closed .lines:after {
	-webkit-transform: rotate3d(0, 0, 1, -45deg);
	transform: rotate3d(0, 0, 1, -45deg);
}
.lines-button.closed {
	/* left: 50%; */
	/* margin-left: -27px; */
	/* position: fixed; */
	z-index: 9999;
	/* background-color: white; */
	/* border-radius: 100%; */
	padding-left: 18px;
	/* box-shadow: 1px 1px 100px rgba(0,0,0,0.5); */
}
.lines-button.closed:hover {}
.lines-button.closed:hover .lines:before, .lines-button.closed:hover .lines:after {
	background-color: black;
}
.lines-button.closed:before {
	/* content:"zatvor menu"; */
	margin-left: -110px;
	margin-top: -5px;
	text-align: left;
	/* color: white; */
}
/**/





@media only screen and (min-width: 221px) and (max-width: 880px) { 
.shrink #nav {/* box-shadow:1px 1px 10px rgb(0 0 0 / 10%) */padding: 0px;margin-bottom: 30px;} 
.lines-button {display:block!important;position: absolute;top: 26px;right: 10px;}
 #nav {transition: all .3s;display:block;width:100%;/* background-color: black; */overflow: hidden;max-height:0;text-align: left;padding: 0;}
.shrink #nav {max-height: 500px;}
#site-navigation ul {padding-top:100px}
	.main-navigation li {display:block}
	.menu-cart {display: block!important;text-align: left;}
	a.logo {padding:0px 20px;max-width: 150px;}
	.site-header {text-align:left;}
	.woocommerce-archive-wrapper {padding:10px}
}