@charset "UTF-8";
/**
 * --- Abstracts (tiché — pouze mixiny, funkce; žádný CSS output) ---
 * Není potřeba importovat zde — partialy si je importují samy přes @use "../abstracts".
 * Výjimka: pokud main.scss sám potřebuje mixiny (v sekci stránkových stylů níže).
 */
/**
 * --- Base (globální reset, CSS custom properties) ---
 * Musí být první, protože ostatní části používají CSS custom properties.
 */
:root {
  --transition: all 0.3s ease-in-out;
  --padding-on-side: 40px;
  --margins: 1em;
  --gap: 40px;
  --gap-smaller: 20px;
  --shadow: 0.25em 0.5em 0.8em rgba(23, 34, 56, 0.1);
  --shadow-hover: 0.2em 0.4em 0.6em rgba(23, 34, 56, 0.15);
  --border-radius-smaller: 4px;
  --border-radius: 10px;
  --border-radius-big: 20px;
  --border-radius-bigger: 40px;
  --content-smaller: 840px;
  --content-small: 960px;
  --content-regular: 1200px;
  --content-big: 1400px;
  --content-bigger: 1720px;
  --font-weight-thin: 100;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  --line-height: 1.5;
  --letter-spacing: normal;
  --font-size-10: 10px;
  --font-size-11: 11px;
  --font-size-12: 12px;
  --font-size-13: 13px;
  --font-size-14: 14px;
  --font-size-15: 15px;
  --font-size-16: 16px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-24: 24px;
  --font-size-28: 28px;
  --font-size-30: 30px;
  --font-size-36: 36px;
  --font-size-42: 42px;
  --font-size-48: 48px;
  --font-size-60: 60px;
  --font-size-72: 72px;
  --font-size-90: 90px;
  --font-size-120: 120px;
  --font-heading: "butik-display-normal", sans-serif;
  --font-basic: "DM Sans", serif;
  --font-handwriting: "Meddon", cursive;
  --color-white: #fff;
  --color-black: #000;
  --color-green: #1a5632;
  --color-red: #d8000c;
  --color-success: #164427;
  --color-warning: #cf7500;
  --color-error: #9c0000;
  --color-heading: var(--color-primary);
  --color-text: var(--color-primary);
  --color-primary-light: #d9ebf4;
  --color-primary: #024264;
  --color-primary-dark: #012f4a;
  --color-secondary-light: #e3f0e5;
  --color-secondary: #58765b;
  --color-secondary-dark: #3f5a3e;
  --color-tertiary-light: #cd394f;
  --color-tertiary: #a81c32;
  --color-tertiary-dark: #6b0c1a;
  --color-light: #d9ebf4;
  --color-border: transparent;
  --color-dark: #0b1d26;
  --gradient-light-green: radial-gradient(1500px at center, rgba(var(--color-white-rgb), 0.9) 0%, rgba(var(--color-white-rgb), 0) 100%);
  --gradient-light-blue: radial-gradient(1500px at center, rgba(var(--color-white-rgb), 0.9) 0%, rgba(var(--color-white-rgb), 0) 100%);
  --gradient-blue-down: linear-gradient(to bottom, var(--color-primary-light)0, var(--color-white) 100%);
  --color-white-rgb: 255, 255, 255;
  --color-black-rgb: 0, 0, 0;
  --page-background-color: var(--color-white);
  --page-default-font-size: var(--font-size-18);
  --page-default-font-color: var(--color-text);
  --page-default-font-family: var(--font-basic);
  --page-default-line-height: 1.2;
  --page-letter-spacing: normal;
  accent-color: var(--color-primary);
}

@media screen and (max-width: 1400px) {
  :root {
    --padding-on-side: 30px;
    --gap: 30px;
    --border-radius: 6px;
    --border-radius-big: 14px;
    --border-radius-bigger: 30px;
    --font-size-12: 12px;
    --font-size-14: 13px;
    --font-size-16: 15px;
    --font-size-18: 16px;
    --font-size-20: 19px;
    --font-size-24: 22px;
    --font-size-28: 24px;
    --font-size-30: 28px;
    --font-size-36: 30px;
    --font-size-42: 36px;
    --font-size-48: 40px;
    --font-size-60: 48px;
    --font-size-72: 60px;
    --font-size-90: 72px;
    --font-size-120: 80px;
  }
}
@media screen and (max-width: 1024px) {
  :root {
    --padding-on-side: 24px;
    --gap: 24px;
    --line-height: 1.5;
    --border-radius: 5px;
    --border-radius-big: 12px;
    --border-radius-bigger: 24px;
    --font-size-12: 11px;
    --font-size-14: 12px;
    --font-size-16: 14px;
    --font-size-18: 15px;
    --font-size-20: 19px;
    --font-size-24: 20px;
    --font-size-28: 22px;
    --font-size-30: 26px;
    --font-size-36: 28px;
    --font-size-42: 32px;
    --font-size-48: 36px;
    --font-size-60: 44px;
    --font-size-72: 56px;
    --font-size-90: 60px;
    --font-size-120: 66px;
  }
}
@media screen and (max-width: 660px) {
  :root {
    --padding-on-side: 16px;
    --gap: 16px;
    --line-height: 1.5;
    --border-radius-big: 10px;
    --border-radius-bigger: 16px;
    --font-size-12: 11px;
    --font-size-14: 12px;
    --font-size-16: 14px;
    --font-size-18: 15px;
    --font-size-20: 18px;
    --font-size-24: 21px;
    --font-size-28: 22px;
    --font-size-30: 23px;
    --font-size-36: 25px;
    --font-size-42: 27px;
    --font-size-48: 30px;
    --font-size-60: 32px;
    --font-size-72: 40px;
    --font-size-90: 42px;
    --font-size-120: 44px;
  }
}
:root {
  /*---- Basic ----*/
  --icon-warning: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='22'%3E%3Cpath fill-rule='evenodd' fill='%23000' d='M2 15a2 2 0 01-2-2V1.999a2 2 0 014 0V13a2 2 0 01-2 2zm0 3a2 2 0 110 4 2 2 0 010-4z'/%3E%3C/svg%3E");
  --icon-ok: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.6 12.8'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' d='M12.9 1.6l-7.2 9.7-4.1-4.9'/%3E%3C/svg%3E");
  --icon-loading: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23000'%3E%3Cpath d='M463.702 162.655L442.491 14.164c-1.744-12.174-16.707-17.233-25.459-8.481l-30.894 30.894C346.411 12.612 301.309 0 254.932 0 115.464 0 3.491 109.16.005 248.511c-.19 7.617 5.347 14.15 12.876 15.234l59.941 8.569c8.936 1.304 17.249-5.712 17.125-15.058C88.704 165.286 162.986 90 254.932 90c22.265 0 44.267 4.526 64.6 13.183l-29.78 29.78c-8.697 8.697-3.761 23.706 8.481 25.459l148.491 21.211c9.784 1.475 18.381-7.034 16.978-16.978zM499.117 249.412l-59.897-8.555c-7.738-.98-17.124 5.651-17.124 16.143 0 90.981-74.019 165-165 165a165.207 165.207 0 01-64.306-13.052l28.828-28.828c8.697-8.697 3.761-23.706-8.481-25.459L64.646 333.435c-9.753-1.393-18.39 6.971-16.978 16.978l21.21 148.492c1.746 12.187 16.696 17.212 25.459 8.481l31.641-31.626C165.514 499.505 210.587 512 257.096 512c138.794 0 250.752-108.618 254.897-247.28.22-7.632-5.317-14.224-12.876-15.308z'/%3E%3C/svg%3E");
  --icon-quote: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 53.5 40'%3E%3Cpath fill='%23a09488' stroke-width='0' d='M24.8 21.9v11.4c0 3.7-3 6.7-6.7 6.7H6.7C3 40 0 37 0 33.3V17.9C0 9 9.7 1.7 11.9.1c.3-.2.6-.1.8 0 .2.2.2.6 0 .8-1.2 1.3-5.4 6.2-6.1 9.9-.7 4 .9 4.3 4.6 4.3H18c3.7 0 6.7 3 6.7 6.7Zm22-6.7H40c-3.7 0-5.3-.3-4.6-4.3.7-3.7 4.8-8.6 6.1-9.9.2-.2.2-.6 0-.8-.2-.2-.6-.3-.8 0C38.5 1.8 28.8 9.1 28.8 18v15.4c0 3.7 3 6.7 6.7 6.7h11.4c3.7 0 6.7-3 6.7-6.7V22c0-3.7-3-6.7-6.7-6.7Z' /%3E%3C/svg%3E");
  /*---- /Basic ----*/
  --icon-email: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 408 356'%3E%3Cpath stroke-width='0' d='M390.49 280.69c.82 16.33-6.29 27.29-22.13 31.61-9.8 2.67-20.05 3.85-30.16 5.2-24.47 3.27-48.96 6.4-73.48 9.3-26.13 3.09-52.28 6.03-78.46 8.73-27.79 2.86-55.61 5.42-83.43 8.01-12.3 1.14-24.61 2.17-36.93 2.96-3.94.25-8.02-.04-11.91-.76-11.29-2.1-17.15-9.41-18.73-22.52-4.68-38.74-9.51-77.47-14.05-116.23-1.94-16.59-3.41-33.24-4.91-49.89-.99-11.05 2.91-15.54 13.91-16.78.9-.1 1.88-.58 2.58-1.17 27.75-23.6 55.43-47.26 83.2-70.83 12.75-10.82 25.82-21.25 38.42-32.24 11.57-10.09 24.59-12.75 38.63-7.52 11.16 4.16 21.72 9.92 32.61 14.83 30.09 13.58 60.3 26.9 90.29 40.7 11.75 5.41 23.19 11.56 34.49 17.88 6.67 3.72 11.28 9.45 12.8 17.33 4.65 24.09 9.85 48.09 14.01 72.27 4.64 27.02 8.38 54.2 12.47 81.31.39 2.58.52 5.21.77 7.81ZM34.31 140.7c4.17 1.63 8.59 3.03 12.71 5.04 27.1 13.19 54.24 26.3 81.16 39.87 21.37 10.77 42.83 21.27 65.15 29.97 11.35 4.42 21.42 3.21 30.68-4.7 1.23-1.05 2.53-2.03 3.76-3.08 30.71-26.47 61.41-52.95 92.13-79.41 8.3-7.15 16.67-14.22 25.23-21.51-.91-.43-1.54-.76-2.19-1.02-15.45-6.31-31.03-12.32-46.33-18.97-28.32-12.31-56.5-24.96-84.71-37.53-7.5-3.34-14.75-7.31-22.41-10.2-10.2-3.84-19.52-2.07-28.29 4.99-18.45 14.87-37.16 29.42-56.04 43.74-23.44 17.78-47.17 35.19-70.85 52.82Zm122.94 68.43c-13.75 23.13-30.77 43.85-47.81 64.51-17.09 20.73-34.82 40.93-52.23 61.32 2.24.11 4.99.56 7.68.34 17.53-1.44 35.05-2.92 52.55-4.59 26.56-2.54 53.12-5.13 79.66-7.9 23.68-2.47 47.35-5.12 71-7.88 23.4-2.73 46.79-5.61 70.16-8.63 9.13-1.18 18.26-2.6 27.26-4.52 3.54-.75 6.72-3.16 10.6-5.08-45.47-30.55-89.28-61.29-129.52-97.11-5.22 4.67-10.76 9.5-16.15 14.49-12.05 11.14-25.43 14.43-40.96 7.83-10.75-4.57-21.72-8.63-32.25-12.77ZM53.54 333.93c29.75-44.84 61.21-88.08 97.24-127.99-2.2-1.05-4.79-2.25-7.36-3.51-28.2-13.78-56.33-27.68-84.62-41.26-8.18-3.93-16.69-7.24-25.24-10.28-6.3-2.25-8.09-.76-7.39 5.87 2.24 21.32 4.55 42.63 7.17 63.9 3.2 25.97 6.73 51.9 10.12 77.85 1.2 9.14 2.34 18.29 3.67 27.41.57 3.93 2.57 6.94 6.4 8.01Zm198.84-139.57c44.42 29.75 85.2 63.47 125.15 98.72 3.25-5.71 2.63-11.76 1.89-17.58-2.65-20.9-5.59-41.76-8.47-62.64-3.83-27.79-7.7-55.57-11.56-83.35-.92-6.63-1.88-13.26-2.8-19.79-1.66-.26-2.87-.18-3.83-.64-4.35-2.1-7.22-.22-10.42 2.8-14.98 14.13-30.15 28.05-45.34 41.95-14.81 13.56-29.73 27.01-44.62 40.53Zm-64.32-179.4c-21.12.22-39.24 7.74-54.38 22.4 17.1-10.03 35.24-17.42 54.38-22.4Zm157.77 314.43c13.04 3.06 40.43-4.96 45.9-13.01-14.96 4.24-30.54 8.65-45.9 13.01Zm40.09 2.99c-9.08 2.81-17.43 5.39-25.77 7.98 7.76 3.16 21.5-1.25 25.77-7.98ZM146.09 18.1c7.89-2.63 15.79-5.26 23.68-7.89-6.12-3.22-20.1 1.38-23.68 7.89Zm-22.83 191.56c-11.81 15.71-23.62 31.41-35.43 47.12l1.32.99c14.24-13.84 26.09-29.48 35.39-47.04l-1.28-1.07Zm221.86-85.26c.71 12.64 3.28 24.39 7.74 35.79 2.04-6.25-3.55-32.06-7.74-35.79Z' /%3E%3C/svg%3E");
  --icon-arrow-right: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 30.3 24.8'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m18.9 20.7 8.3-8.3L18.9 4m8.3 8.4h-24' /%3E%3C/svg%3E");
  --icon-bullet: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M2.4 13.5C7.3 15.1 8 17.7 8 17.7s4.2-12.5 9.7-15.3' /%3E%3C/svg%3E");
  --icon-location: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 288 384'%3E%3Cpath stroke-width='0' d='M165.54 347.97c17.7.27 34.97-1.01 51.4 4.83.06.59.13 1.19.19 1.78-2.47.84-4.89 2-7.43 2.46-17.43 3.13-35.01 2.87-52.58 1.88-5.46-.31-10.98-.85-16.29-2.07-3.91-.9-8-2.47-11.16-4.87-6.11-4.65-12.58-9.35-17.22-15.33-28.9-37.3-53.4-77.28-70.38-121.49-9.52-24.79-14.41-50.52-12.99-77.22 1.17-21.87 6.59-42.5 17.7-61.53 9.99-17.12 24.98-28.61 42.23-37.42 20.17-10.3 41.4-16.28 64.36-15.1 18.87.98 37.16 4.03 53.86 13.48 33.04 18.69 50.64 47 52.44 84.95 1.31 27.69-4.47 54.33-13.08 80.36-14.49 43.83-36.04 84.2-61.85 122.32-5 7.39-11.42 13.82-17.18 20.69-.52.62-1.08 1.22-2.02 2.29Zm86.56-219.15c-.12-2.01-.35-6-.6-9.98-2.87-46.33-36.06-73.84-67.98-82.81-25.73-7.23-50.95-4.37-75.31 5.91-20.3 8.57-37.23 21.41-47.07 41.76-13.58 28.08-16.87 57.45-9.23 87.76 13.18 52.27 35.41 100.46 66.63 144.4 6.91 9.72 14.76 18.86 22.86 27.64 6.01 6.52 11.16 6.24 17.35-.13 5.98-6.16 12.09-12.38 17.01-19.36 26.2-37.17 47.02-77.2 62.12-120.12 8.32-23.63 13.71-47.9 14.22-75.07Zm-158.98 3.83c.3-29.88 22.93-52.05 52.8-51.75 30.1.31 53.43 23.31 53.05 52.31-.39 29.62-23.8 53.07-52.79 52.9-30.46-.18-53.36-23.25-53.06-53.46Zm7.79 0c-.02 13.44 5.02 25.54 14.45 34.05 6.71 6.05 13.96 9.47 23.72 7.88 29.79-4.86 46.57-39.63 30.42-64.92-4.56-7.15-11.12-13.04-16.84-19.43-.58-.65-1.7-1-2.62-1.11-26.39-3.36-49.09 16.77-49.14 43.54Z' /%3E%3C/svg%3E");
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
* {
  box-sizing: border-box;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
a,
input,
textarea,
p,
body,
span,
menu {
  margin: 0;
  padding: 0;
  line-height: var(--page-default-line-height, 1.25);
}

img {
  border: none;
}

ul li,
menu li {
  list-style: none;
}

a {
  text-decoration: none;
}

a,
svg,
path {
  transition: var(--transition);
}

div,
article,
section,
img,
main,
input,
textarea {
  display: block;
}

input,
textarea,
img,
a,
option,
select,
button,
div {
  outline: none;
}

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

html {
  font-size: var(--page-default-font-size, var(--font-size-18));
  font-family: var(--font-basic);
  font-weight: var(--font-weight-light);
  font-optical-sizing: auto;
  height: fill-available;
  height: -webkit-fill-available;
  width: 100%;
  overflow-x: hidden;
}

body {
  color: var(--page-default-font-color, var(--color-text));
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background-color: var(--page-background-color, var(--color-white));
  min-height: 100dvh;
  min-height: fill-available;
  min-height: -webkit-fill-available;
  overflow: clip;
  letter-spacing: var(--page-letter-spacing, normal);
}

/**
 * --- Components (izolované UI komponenty) ---
 * Všechny znovupoužitelné komponenty, které nejsou specifické pro WordPress bloky.
 */
.button,
.wp-block-button {
  --button-text-color: var(--color-white);
  --button-text-color-hover: var(--color-white);
  --button-background-color: var(--color-tertiary);
  --button-background-color-hover: var(--color-primary);
  --button-font-size: var(--font-size-18);
  --button-border-radius: 0 var(--border-radius) 0 var(--border-radius);
  --button-border-color: transparent;
  --button-border: 1px solid var(--button-border-color);
  --button-border-color-hover: transparent;
  --button-shadow: var(--shadow);
  --button-shadow-hover: var(--shadow-hover);
  --button-padding: 0.75em clamp(0.8em, 4vw, 1.6em);
}
.button--outline, .button.is-style-outline,
.wp-block-button--outline,
.wp-block-button.is-style-outline {
  --button-text-color: var(--color-tertiary);
  --button-text-color-hover: var(--color-white);
  --button-border-color: var(--color-tertiary);
  --button-border-color-hover: var(--color-primary);
  --button-background-color: transparent;
  --button-background-color-hover: var(--color-primary);
  --button-shadow: none;
}
.button--smaller,
.wp-block-button--smaller {
  --button-font-size: var(--font-size-15);
}
.button--tiny,
.wp-block-button--tiny {
  --button-font-size: var(--font-size-13);
  --button-padding: 0.4em 0.8em 0.45em;
}
.button.is-style-white,
.wp-block-button.is-style-white {
  --button-text-color: var(--color-secondary);
  --button-text-color-hover: var(--color-white);
  --button-background-color: var(--color-white);
  --button-background-color-hover: var(--color-primary);
}
.button--secondary, .button.is-style-secondary,
.wp-block-button--secondary,
.wp-block-button.is-style-secondary {
  --button-text-color: var(--color-secondary);
  --button-text-color-hover: var(--color-white);
  --button-background-color: var(--color-white);
  --button-background-color-hover: var(--color-primary);
}

.button,
.wp-block-button .wp-block-button__link {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-optical-sizing: auto;
  letter-spacing: var(--letter-spacing);
  display: inline-block;
  padding: var(--button-padding);
  line-height: 1;
  font-size: var(--button-font-size, var(--font-size-16));
  border: var(--button-border, none);
  transition: var(--transition);
  cursor: pointer;
  border-radius: var(--button-border-radius, var(--border-radius));
  text-align: center;
  color: var(--button-text-color, var(--color-white));
  background-color: var(--button-background-color, var(--color-main));
  box-shadow: var(--button-shadow, none);
  letter-spacing: 0.05em;
}
.button:hover,
.wp-block-button .wp-block-button__link:hover {
  color: var(--button-text-color-hover, var(--color-white));
  background-color: var(--button-background-color-hover, var(--color-secondary-light));
  box-shadow: var(--button-shadow-hover, none);
  border-color: var(--button-border-color-hover, var(--color-tertiary));
}

.buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1em;
}
.buttons-wrapper.text-center {
  justify-content: center;
}
.buttons-wrapper.text-right {
  justify-content: flex-end;
}

.form {
  --form-input-font-family: var(--font-basic);
  --form-input-box-shadow: var(--shadow);
  --form-submit-button-border-radius: 0 var(--border-radius) 0 var(--border-radius);
  --form-response-border-radius: var(--border-radius);
  --form-submit-button-font-family: var(--font-heading);
  --form-submit-button-shadow: var(--shadow);
  --form-gap: clamp(12px, 2vw, 20px);
  padding: 0;
}
.form__submit-button {
  box-shadow: var(--form-submit-button-shadow);
  justify-content: center;
  width: 100%;
  white-space: nowrap;
}

.newsletter-form {
  max-width: 540px;
  margin: 1.25em auto 0;
  --form-column-min-width: 160px;
  --form-input-border-radius: var(--border-radius);
  --form-label-text-color: var(--color-primary);
  --form-input-background-color: var(--color-white);
  --form-submit-button-padding: 0.55em 1.5em;
}

.articles {
  --articles-gap: clamp(10px, 2cqw, 30px);
  --article-min-width: 320px;
  display: grid;
  gap: var(--articles-gap);
  grid-template-columns: repeat(auto-fill, minmax(var(--article-min-width), 1fr));
}
.articles--post {
  margin-top: var(--gap);
}
.articles--product {
  --article-min-width: 300px;
  margin-top: var(--gap);
  margin-bottom: calc(var(--gap) * 2);
}

.article {
  --item-arrow-color: var(--color-tertiary-light);
  --item-title-font-size: var(--font-size-24);
  --item-title-color: var(--color-primary);
  --item-text-color: var(--color-text);
  --item-shadow: var(--shadow);
  background-color: var(--color-white);
  border-radius: 0 var(--border-radius-bigger);
  box-shadow: var(--item-shadow);
  position: relative;
  transition: var(--transition);
}
.article:last-child::before {
  content: "";
  position: absolute;
  bottom: -5em;
  right: 0;
  width: 30%;
  aspect-ratio: 1/2;
  background: url("../assets/images/kytka-2.svg") center/contain no-repeat;
  transform: rotate(90deg);
  pointer-events: none;
  z-index: 1;
}
.article__thumbnail-wrapper {
  aspect-ratio: 16/10;
  border-radius: 0 var(--border-radius-bigger);
  overflow: hidden;
}
.article__thumbnail {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.article__content {
  padding: clamp(16px, 2cqw, 30px);
}
.article__content-top {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}
.article__title {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-optical-sizing: auto;
  letter-spacing: var(--letter-spacing);
  font-size: var(--item-title-font-size);
  color: var(--item-title-color);
  margin: 0;
  transition: var(--transition);
  line-height: 1.2;
}
.article__excerpt {
  font-size: var(--font-size-14);
  color: var(--item-text-color);
  margin: 0;
  transition: var(--transition);
  line-height: var(--line-height);
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article__date {
  font-family: var(--font-handwriting);
  font-size: var(--font-size-18);
  color: var(--color-secondary);
  transform: rotate(-2deg);
  margin-bottom: -0.5em;
  margin-top: -0.5em;
}
.article__address {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-bold);
}
.article__address::before {
  content: "";
  width: 1.2em;
  height: 1.2em;
  mask: var(--icon-location) center/contain no-repeat;
  background-color: var(--color-secondary);
}

.product {
  --item-title-color: var(--color-primary);
  --item-title-font-size: var(--font-size-24);
  --item-text-color: var(--color-text);
  text-align: center;
}
.product__thumbnail-wrapper {
  margin-bottom: 1.5em;
}
.product__thumbnail-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: clamp(60px, 20vw, 120px);
  aspect-ratio: 10/1;
  border-radius: 50%;
  background: #282733;
  filter: blur(0.65em);
  opacity: 0.6;
  transform: translate(-50%, 50%);
}
.product__thumbnail {
  margin: 0 auto;
}
.product__title {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-optical-sizing: auto;
  letter-spacing: var(--letter-spacing);
  font-size: var(--item-title-font-size);
  color: var(--item-title-color);
  margin: 0;
  transition: var(--transition);
}
.product__excerpt {
  font-size: var(--font-size-16);
  color: var(--item-text-color);
  margin: 0.25em 0 0;
  transition: var(--transition);
  line-height: var(--line-height);
}

.popup {
  --popup-outer-gap: clamp(10px, 6cqw, 60px);
  --popup-padding: clamp(20px, 5cqw, 60px);
  --popup-padding-top: clamp(40px, 5cqw, 80px);
  --popup-close-color: var(--color-secondary);
  --popup-close-color-hover: var(--color-light);
  --popup-close-size: clamp(30px, 4cqw, 40px);
  --popup-close-stroke-width: 0.16em;
  --popup-loader-size: clamp(30px, 5cqw, 60px);
  --popup-loader-border-width: 0.4em;
  --popup-loader-color: var(--color-white);
  --popup-loader-color-rgb: var(--color-white-rgb);
  position: fixed;
  z-index: -999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--popup-outer-gap);
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  color: var(--color-main);
  transition: var(--transition);
  overflow: auto;
}
.popup::-webkit-scrollbar {
  width: 6px;
}
.popup::-webkit-scrollbar-track {
  background: var(--color-primary);
}
.popup::-webkit-scrollbar-thumb {
  background: var(--color-secondary, #cbd5e1);
  border-radius: 10px;
}
.popup::before {
  content: "";
  width: var(--popup-loader-size);
  height: var(--popup-loader-size);
  margin: 0;
  position: absolute;
  top: calc(50% - var(--popup-loader-size) / 2);
  left: calc(50% - var(--popup-loader-size) / 2);
  animation: spin 1s linear infinite;
  border: var(--popup-loader-border-width) solid rgba(var(--popup-loader-color-rgb), 0.35);
  border-top: var(--popup-loader-border-width) solid var(--popup-loader-color);
  border-radius: 50%;
  transition: var(--transition);
  z-index: 2;
  pointer-events: none;
}
.popup.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  z-index: 999;
}
.popup.visible::before {
  opacity: 0;
}
.popup__inner {
  background-color: var(--color-light);
  max-width: 960px;
  padding: var(--popup-padding);
  padding-top: var(--popup-padding-top);
  width: 100%;
  border-radius: var(--border-radius-bigger);
  box-shadow: var(--shadow-box);
  transition: var(--transition);
  z-index: 5;
}
.popup__helper {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.popup__close {
  --close-color: var(--color-brown-dark-logo);
  position: absolute;
  top: clamp(12px, 1.5cqw, 20px);
  right: clamp(12px, 1.5cqw, 20px);
  width: var(--popup-close-size);
  height: var(--popup-close-size);
  aspect-ratio: 1/1;
  cursor: pointer;
  opacity: 0.75;
  transition: var(--transition);
  z-index: 10;
  background: none;
  border: none;
}
.popup__close::before, .popup__close::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.1em;
  background-color: var(--close-color);
  top: 50%;
  left: 0;
}
.popup__close::before {
  transform: rotate(45deg);
}
.popup__close::after {
  transform: rotate(-45deg);
}
.popup__close:hover {
  --close-color: var(--color-primary);
  opacity: 1;
}
.popup__content > *:first-child {
  margin-top: 0;
}
.popup__content > *:last-child {
  margin-bottom: 0;
}

/**
 * --- Blocks (WordPress Gutenberg specifika) ---
 * Styly pro bloky, které jsou specifické pro WordPress editor a frontend.
 */
.global-style > *:first-child {
  margin-top: 0;
}
.global-style > *:last-child {
  margin-bottom: 0;
}
.global-style p,
.global-style li {
  line-height: var(--line-height);
}
.global-style a:not([class]) {
  color: var(--color-secondary);
  position: relative;
  text-decoration: underline;
}
.global-style a:not([class]):hover {
  color: var(--color-secondary);
  text-decoration: none;
}
.global-style hr {
  border: 0;
  height: 2px;
  background: var(--color-light);
  clear: both;
  margin: var(--gap) 0;
}

p,
ul,
ol {
  --font-size: var(--font-size-18);
  font-size: var(--font-size);
  color: var(--font-color, var(--color-text));
}
p strong,
ul strong,
ol strong {
  font-weight: var(--font-weight-bold);
}

.wp-block-heading {
  --block-heading-margin-top: 1em;
  --block-heading-margin-bottom: 0.5em;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-optical-sizing: auto;
  letter-spacing: var(--letter-spacing);
  line-height: 1;
  color: var(--font-color-heading, var(--color-heading));
  margin-top: var(--block-heading-margin-top);
  margin-bottom: var(--block-heading-margin-bottom);
  letter-spacing: var(--letter-spacing, normal);
  font-size: var(--font-size);
}
.wp-block-heading mark {
  color: var(--font-color-heading, var(--color-heading));
  font-size: 1.15em;
  padding: 0 0.3em 0.05em;
  border-radius: var(--border-radius);
  display: inline-block;
}
.wp-block-heading em {
  font-weight: var(--font-weight-light);
}

h1.wp-block-heading {
  --font-size: var(--font-size-72);
}

h2.wp-block-heading {
  --font-size: var(--font-size-60);
}

h3.wp-block-heading {
  --font-size: var(--font-size-48);
}

h4.wp-block-heading {
  --font-size: var(--font-size-36);
}

h5.wp-block-heading {
  --font-size: var(--font-size-30);
}

h6.wp-block-heading {
  --font-size: var(--font-size-24);
}

.has-small-font-size {
  font-size: calc(var(--font-size) * 0.875);
}

.has-medium-font-size {
  font-size: calc(var(--font-size) * 1.15);
}

.has-large-font-size {
  font-size: calc(var(--font-size) * 1.3);
}

.has-x-large-font-size {
  font-size: calc(var(--font-size) * 1.75);
}

@media screen and (max-width: 1024px) {
  .has-medium-font-size {
    font-size: calc(var(--font-size) * 1.125);
  }
  .has-large-font-size {
    font-size: calc(var(--font-size) * 1.375);
  }
  .has-x-large-font-size {
    font-size: calc(var(--font-size) * 1.5);
  }
}
.has-text-align-left {
  text-align: left;
}

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

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

.is-vertical-aligned-top,
.are-vertically-aligned-top {
  align-items: flex-start;
}

.is-vertical-aligned-center,
.are-vertically-aligned-center {
  align-items: center;
}

.is-vertical-aligned-bottom,
.are-vertically-aligned-bottom {
  align-items: flex-end;
}

.is-content-justification-left {
  justify-content: flex-start;
}

.is-content-justification-center {
  justify-content: center;
}

.is-content-justification-right {
  justify-content: flex-end;
}

.aligncenter {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.aligncenter img {
  margin-left: auto;
  margin-right: auto;
}

.wp-block-columns {
  --block-columns-gap: 2em clamp(15px, 3cqw, 40px);
  --block-columns-margin: var(--gap) 0;
  display: flex;
  gap: var(--block-columns-gap);
  margin: var(--block-columns-margin);
}
@media screen and (max-width: 768px) {
  .wp-block-columns {
    flex-direction: column;
  }
}

.wp-block-column > *:first-child {
  margin-top: 0;
}
.wp-block-column > *:last-child {
  margin-bottom: 0;
}
.wp-block-column {
  flex-grow: 1;
  flex-basis: 50%;
}

.wp-block-image {
  --block-image-margin: var(--margins) auto;
  --block-image-border-radius: var(--border-radius);
  margin: var(--block-image-margin);
  border-radius: var(--block-image-border-radius);
  overflow: hidden;
}
.wp-block-image img {
  border-radius: var(--block-image-border-radius);
}
.wp-block-image .wp-element-caption {
  text-align: center;
  font-size: var(--font-size-16);
  color: var(--color-font, var(--color-main));
  padding: 1em;
  background-color: var(--color-white);
  display: block;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-optical-sizing: auto;
  letter-spacing: var(--letter-spacing);
}

.wp-block-gallery {
  --block-gallery-columns: 3;
  --block-gallery-gap: clamp(10px, 2cqw, 20px);
  --block-gallery-image-aspect-ratio: inherit;
  --block-gallery-image-background-color: var(--color-primary);
  display: grid;
  grid-template-columns: repeat(var(--block-gallery-columns), 1fr);
  gap: var(--block-gallery-gap) !important;
  margin: var(--block-gallery-gap);
  align-items: flex-start;
}
.wp-block-gallery.columns-2 {
  --block-gallery-columns: 2;
}
.wp-block-gallery.columns-4 {
  --block-gallery-columns: 4;
}
.wp-block-gallery.columns-5 {
  --block-gallery-columns: 5;
}
.wp-block-gallery.columns-6 {
  --block-gallery-columns: 6;
}
.wp-block-gallery.columns-7 {
  --block-gallery-columns: 7;
}
.wp-block-gallery.columns-8 {
  --block-gallery-columns: 8;
}
.wp-block-gallery .wp-block-image {
  aspect-ratio: var(--block-gallery-image-aspect-ratio);
  overflow: hidden;
  margin: 0;
  width: 100% !important;
  align-items: flex-start;
  justify-content: center;
  display: flex;
}
.wp-block-gallery .wp-block-image a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--block-gallery-image-background-color);
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}
.wp-block-gallery .wp-block-image:hover a::before {
  opacity: 0.5;
}
.wp-block-gallery .wp-block-image img {
  width: 100%;
  height: auto;
}
.wp-block-gallery.is-cropped .wp-block-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .wp-block-gallery.columns-5, .wp-block-gallery.columns-6, .wp-block-gallery.columns-7, .wp-block-gallery.columns-8 {
    --block-gallery-columns: 4;
  }
}
@media screen and (max-width: 1024px) {
  .wp-block-gallery.columns-4, .wp-block-gallery.columns-5, .wp-block-gallery.columns-6, .wp-block-gallery.columns-7, .wp-block-gallery.columns-8 {
    --block-gallery-columns: 3;
  }
}
@media screen and (max-width: 480px) {
  .wp-block-gallery.columns-2, .wp-block-gallery.columns-3, .wp-block-gallery.columns-4, .wp-block-gallery.columns-5, .wp-block-gallery.columns-6, .wp-block-gallery.columns-7, .wp-block-gallery.columns-8 {
    --block-gallery-columns: 2;
  }
}

.wp-block-table {
  margin: var(--gap) 0;
  overflow: hidden;
  border-radius: var(--border-radius);
}
@media screen and (max-width: 768px) {
  .wp-block-table.responsive-table thead {
    display: none;
  }
  .wp-block-table.responsive-table td {
    display: flex;
    justify-content: space-between;
    gap: 0 1em;
  }
  .wp-block-table.responsive-table td div {
    text-align: right;
  }
  .wp-block-table.responsive-table td::before {
    content: attr(data-label);
    font-weight: bold;
  }
  .wp-block-table.responsive-table tbody {
    display: grid;
    gap: 1em;
  }
}

.wp-block-quote {
  --block-quote-margin: 2em auto;
  padding: 0;
  margin: var(--block-quote-margin);
  position: relative;
}
.wp-block-quote::before {
  content: "";
  position: relative;
  display: block;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  height: clamp(30px, 5cqw, 40px);
  aspect-ratio: 4/3;
  mask: var(--icon-quote) center/contain no-repeat;
  background-color: var(--color-brown-light-logo);
  opacity: 0.5;
  margin-bottom: 1em;
}
.wp-block-quote p {
  font-family: var(--font-basic);
  font-weight: var(--font-weight-medium);
  font-optical-sizing: auto;
  margin: 0;
  font-size: var(--font-size-24);
  color: var(--color-heading);
  z-index: 2;
}
.wp-block-quote p a {
  color: var(--color-primary) !important;
  text-decoration: underline;
}
.wp-block-quote p a:hover {
  text-decoration: none;
}
.wp-block-quote cite {
  margin-top: 1em;
  font-size: var(--font-size-14);
  display: block;
  font-family: var(--font-basic);
  font-weight: var(--font-weight-semibold);
  font-optical-sizing: auto;
  color: var(--color-primary);
  font-style: normal;
  text-transform: uppercase;
}
.wp-block-quote cite a {
  font-style: normal;
  color: var(--color-primary);
}
.wp-block-quote cite a:hover {
  text-decoration: underline;
}
.wp-block-quote cite em {
  font-style: normal;
  line-break: loose;
}
@media screen and (max-width: 660px) {
  .wp-block-quote {
    --block-quote-margin: 1em auto;
  }
}

.wp-block-list {
  counter-reset: item;
  list-style: none;
  margin: 1em 0;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  padding: 0;
}
.wp-block-list li {
  padding: 0 0 0 1.8em;
  color: var(--font-color, var(--color-text));
}

ul.wp-block-list {
  --icon-list-item: var(--icon-bullet);
  --icon-list-item-color: var(--color-secondary);
}
ul.wp-block-list li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1em;
  height: 1em;
  top: 0.25em;
  mask: var(--icon-list-item) center/contain no-repeat;
  background-color: var(--icon-list-item-color, var(--color-primary));
}

ol.wp-block-list li::before {
  position: absolute;
  left: 0;
  counter-increment: item;
  content: counter(item) ". ";
  font-weight: var(--font-weight-medium);
  color: var(--icon-list-item-color, var(--color-primary));
  min-width: 1em;
}

.wp-block-buttons {
  --block-buttons-margin: var(--gap) 0 0 0;
  --block-buttons-gap: 0.5em 1em;
  margin: var(--block-buttons-margin);
  display: flex;
  flex-wrap: wrap;
  gap: var(--block-buttons-gap);
}

/* ----------------------------- */
/* -------- Barvy textu -------- */
/* ----------------------------- */
.has-primary-color {
  --font-color: var(--color-primary);
  --font-color-heading: var(--color-primary);
}
.has-secondary-color {
  --font-color: var(--color-secondary);
  --font-color-heading: var(--color-secondary);
}
.has-tertiary-color {
  --font-color: var(--color-tertiary);
  --font-color-heading: var(--color-tertiary);
}
.has-main-color {
  --font-color: var(--color-main);
  --font-color-heading: var(--color-main);
}
.has-light-color {
  --font-color: var(--color-light);
  --font-color-heading: var(--color-light);
}
.has-white-color {
  --font-color: var(--color-white);
  --font-color-heading: var(--color-white);
}

/* ------------------------------ */
/* -------- Barvy pozadí -------- */
/* ------------------------------ */
.has-background-color-primary {
  --background-color: var(--color-primary);
  --font-color: var(--color-white);
  --font-color-heading: var(--color-white);
}
.has-background-color-primary-light {
  --background-color: var(--color-primary-light);
  --font-color: var(--color-primary);
  --font-color-heading: var(--color-primary);
}
.has-background-color-secondary {
  --background-color: var(--color-secondary);
  --font-color: var(--color-white);
  --font-color-heading: var(--color-white);
}
.has-background-color-secondary-light {
  --background-color: var(--color-secondary-light);
  --font-color: var(--color-secondary);
  --font-color-heading: var(--color-secondary);
}
.has-background-color-white {
  --background-color: var(--color-white);
  --font-color: var(--color-primary);
  --font-color-heading: var(--color-primary);
}
.has-background-color-black {
  --background-color: var(--color-black);
  --font-color: var(--color-white);
  --font-color-heading: var(--color-white);
}
.has-background-color-light {
  --background-color: var(--color-light);
  --font-color: var(--color-primary);
  --font-color-heading: var(--color-primary);
}
.has-background-color-dark {
  --background-color: var(--color-dark);
  --font-color: var(--color-white);
  --font-color-heading: var(--color-white);
}

.has-background-gradient-light-green {
  --background-color: var(--color-secondary-light);
  background: var(--gradient-light-green);
}
.has-background-gradient-light-blue {
  background: var(--gradient-light-blue);
}
.has-background-gradient-blue-down {
  background: var(--gradient-blue-down);
}

section.has-light-green-gradient-background {
  --background-color: var(--color-secondary-light);
  --font-color: var(--color-primary);
  --font-color-heading: var(--color-primary);
  background: var(--gradient-light-green);
  background-color: var(--background-color) !important;
}

/* --------------------------------------------------- */
/* -------- Vlastní .is-style styly pro bloky -------- */
/* --------------------------------------------------- */
.is-style-subheading {
  --font-size: var(--font-size-24);
  font-family: var(--font-handwriting);
  color: var(--font-color, var(--color-primary));
  margin-bottom: 0.25em;
  letter-spacing: 0.05em;
  line-height: 1.2;
  transform: rotate(-2deg);
}
.is-style-subheading + .wp-block-heading {
  margin-top: 0;
}
.is-style-subheading.has-text-align-center {
  text-align: center;
}
.is-style-subheading-year {
  --font-size: var(--font-size-120);
  font-family: var(--font-handwriting);
  color: var(--font-color, var(--color-primary));
  margin-bottom: 0.1em;
  letter-spacing: -0.1em;
  line-height: 1 !important;
  transform: rotate(-2deg);
  opacity: 0.35;
}
.is-style-subheading-year + .wp-block-heading {
  margin-top: 0;
}
.is-style-subheading-year.has-text-align-center {
  justify-content: center;
}

.is-style-heading-font {
  --line-height: 1.25;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-optical-sizing: auto;
  letter-spacing: var(--letter-spacing);
}

p.has-text-align-center {
  max-width: 48em;
  margin-left: auto;
  margin-right: auto;
}

.is-style-with-lines {
  --line-width: clamp(24px, 10vw, 48px);
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.is-style-with-lines::before {
  content: "";
  display: block;
  width: var(--line-width);
  height: 2px;
  background-color: var(--font-color, var(--color-primary));
}
.is-style-with-lines.has-text-align-center {
  justify-content: center;
}
.is-style-with-lines.has-text-align-center::after {
  content: "";
  display: block;
  width: var(--line-width);
  height: 2px;
  background-color: var(--font-color, var(--color-primary));
}

.newsletter-section .content__inner {
  --section-padding: clamp(24px, 5vw, 80px);
  overflow: visible;
  border-radius: 0;
  border-top-right-radius: var(--border-radius-bigger);
  border-bottom-left-radius: var(--border-radius-bigger);
}
.newsletter-section .wp-block-image {
  margin-top: calc(var(--section-padding) * -1.75) !important;
  margin-bottom: -1em !important;
}
.newsletter-section .wp-block-image img {
  height: clamp(80px, 12cqw, 125px);
  aspect-ratio: 100/23;
  border-radius: 0;
}

.wp-block-heading.years-50 {
  --font-size: var(--font-size-72);
  margin-top: -0.2em;
}
.wp-block-heading.years-50 strong {
  --font-color: var(--color-secondary);
  color: var(--font-color);
}
.wp-block-heading.years-50 strong em {
  font-size: 2em;
  font-style: normal;
}

.is-style-flower-on-background {
  overflow: hidden;
}
.is-style-flower-on-background::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 50%;
  width: clamp(360px, 80vw, 1200px);
  aspect-ratio: 2/1;
  background: url("../assets/images/kytka-3.svg") center/contain no-repeat;
  pointer-events: none;
  opacity: 0.15;
  transform: translate(-50%, 0);
}

.special-product .image-text__image-wrapper::before {
  content: "";
  position: absolute;
  top: -1em;
  left: -6em;
  width: 70%;
  aspect-ratio: 2/1;
  background: url("../assets/images/kytka-3.svg") center/contain no-repeat;
  pointer-events: none;
  z-index: 1;
}
.special-product .image-text__image-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: clamp(100px, 20vw, 260px);
  aspect-ratio: 10/1;
  border-radius: 50%;
  background: #282733;
  filter: blur(1em);
  opacity: 0.3;
  transform: translate(-50%, 50%);
}

.video-block {
  margin-top: var(--gap);
}
.video-block__play:hover {
  background-color: var(--color-tertiary);
}
.video-block__play:hover::after {
  background-color: var(--color-white);
}

.image-gallery {
  --image-height: 360px;
  margin-top: var(--gap);
}
.image-gallery__viewport {
  overflow: visible !important;
}
.image-gallery__slide {
  flex: 0 0 auto !important;
}
.image-gallery__slide-inner {
  padding: 0 1em;
}
.image-gallery__slide img {
  max-height: var(--image-height) !important;
}
.image-gallery__caption {
  position: absolute;
  left: clamp(10px, 3cqw, 15px);
  bottom: clamp(10px, 3cqw, 15px);
  z-index: 2;
  background-color: var(--color-light);
  padding: 0.5em 1em;
  border-radius: var(--border-radius);
  font-size: var(--font-size-14);
  color: var(--color-heading);
}
@media screen and (max-width: 1024px) {
  .image-gallery {
    --image-height: 280px;
  }
}
@media screen and (max-width: 600px) {
  .image-gallery {
    --image-height: 200px;
  }
}
@media screen and (max-width: 480px) {
  .image-gallery {
    --image-height: 160px;
  }
}

.image-text {
  --item-shadow: none;
  --image-text-multiple-gap: clamp(10px, 2vw, 20px);
  --item-border-radius: 0 var(--border-radius-bigger);
  gap: 1em calc(var(--gap) * 2);
}
.image-text img {
  border: none;
}

.hero {
  background-color: var(--color-primary-light);
  overflow: visible;
}
.hero::before {
  content: "";
  position: absolute;
  bottom: -5em;
  right: 3%;
  width: clamp(200px, 50vw, 600px);
  aspect-ratio: 16/9;
  background: url("../assets/images/kytka-3.svg") center/contain no-repeat;
  z-index: 20;
}
.hero__content-inner {
  max-width: 34em;
}
.hero__image-wrapper {
  right: 14%;
  bottom: 1em;
  top: 9em;
  width: 660px;
}
.hero__image-wrapper::after {
  content: "";
  position: absolute;
  bottom: 2em;
  left: 50%;
  width: clamp(100px, 20vw, 260px);
  aspect-ratio: 10/1;
  border-radius: 50%;
  background: #282733;
  filter: blur(1em);
  opacity: 0.5;
  transform: translate(-50%, 50%);
  z-index: 0;
}
.hero__image {
  position: relative;
  object-fit: contain;
  width: auto;
  margin: 0 auto;
  z-index: 2;
}
.hero .wp-block-paragraph {
  line-height: var(--line-height);
}
.hero .wp-block-heading strong {
  color: var(--color-secondary);
}
.hero .wp-block-heading strong em {
  font-size: 2em;
  font-style: normal;
}
@media screen and (max-width: 1700px) {
  .hero__image-wrapper {
    right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .hero__image-wrapper {
    width: 480px;
    top: auto;
  }
  .hero__image-wrapper::after {
    bottom: 0;
  }
}
@media screen and (max-width: 960px) {
  .hero {
    --hero-gap-top-multiplier: 2;
    --hero-gap-bottom-multiplier: 1;
    text-align: center;
  }
  .hero__content-inner {
    margin: 0 auto;
  }
  .hero__image-wrapper {
    position: relative;
    margin: 0 auto;
  }
  .hero .wp-block-buttons {
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .hero::before {
    bottom: -2em;
  }
  .hero__image-wrapper {
    width: auto;
  }
}

.is-style-with-flower .image-text__image-wrapper::before {
  content: "";
  position: absolute;
  top: -4em;
  left: -6em;
  height: clamp(80px, 20vw, 300px);
  aspect-ratio: 13/30;
  background: url("../assets/images/kytka-2.svg") center/contain no-repeat;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .is-style-with-flower .image-text__image-wrapper::before {
    left: -2em;
    top: -1em;
  }
}

/**
 * --- Layout (makro layouty a utility) ---
 * Vše, co se týká rozvržení stránek, sekcí, top baru, mobilní menu atd.
 */
.z-index-5 {
  z-index: 5;
}

.z-index-10 {
  z-index: 10;
}

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

.margin-top {
  margin-top: var(--gap);
}

.margin-bottom {
  margin-bottom: var(--gap);
}

.no-margin-top {
  margin-top: 0 !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.absolute-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section {
  --section-gap: var(--gap);
  position: relative;
  z-index: 2;
  background-color: var(--background-color, transparent);
}
.section--smaller {
  padding: calc(var(--section-gap) * 2) 0;
}
.section--normal {
  padding: calc(var(--section-gap) * 2.5) 0;
}
.section--bigger {
  padding: calc(var(--section-gap) * 3) 0;
}
.section--custom {
  padding-top: calc(var(--section-gap) * var(--custom-padding-top, 2.5));
  padding-bottom: calc(var(--section-gap) * var(--custom-padding-bottom, 2.5));
}
.section--smaller-top {
  padding-top: calc(var(--section-gap) * 2);
}
.section--no-top {
  padding-top: 0;
}
.section--no-bottom {
  padding-bottom: 0;
}
.section--background {
  background-color: var(--color-light);
}
.section--gradient {
  background: var(--linear-gradient);
}

.content {
  width: 100%;
  padding: 0 var(--padding-on-side);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  max-width: calc(var(--content-width) + 2 * var(--padding-on-side));
}
.content--tiny {
  --content-width: var(--content-tiny);
}
.content--smaller {
  --content-width: var(--content-small);
}
.content--regular {
  --content-width: var(--content-regular);
}
.content--big {
  --content-width: var(--content-big);
}
.content--bigger {
  --content-width: var(--content-bigger);
}

.section:not([class*=is-style]):not([class*=has-background]):has(+ .section:not([class*=is-style]):not([class*=has-background])) {
  padding-bottom: 0;
}

.top-bar {
  padding: clamp(10px, 2vw, 20px) 0;
  z-index: 100;
  --top-bar-color: var(--color-brown-light-logo);
}
.top-bar--absolute {
  --top-bar-color: var(--color-white);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.top-bar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar__left, .top-bar__right {
  flex-basis: 100%;
  display: flex;
  gap: clamp(10px, 3cqw, 30px);
  align-items: center;
}
.top-bar__logo-wrapper {
  flex-shrink: 0;
}
.top-bar__logo {
  width: clamp(100px, 13vw, 160px);
  display: inline-block;
}
.top-bar__right {
  justify-content: flex-end;
}
.top-bar__menu {
  display: flex;
  gap: clamp(16px, 4cqw, 40px);
  align-items: center;
}
.top-bar__menu a {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-optical-sizing: auto;
  letter-spacing: var(--letter-spacing);
  color: var(--color-primary);
  text-decoration: none;
  position: relative;
  font-size: var(--font-size-20);
}
.top-bar__menu a:hover {
  color: var(--color-secondary);
}
.top-bar__mobile-menu {
  --span-color: var(--color-primary);
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 0.5em;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-optical-sizing: auto;
  letter-spacing: var(--letter-spacing);
  color: var(--color-primary);
}
.top-bar__mobile-menu:hover {
  --span-color: var(--color-primary);
}
.top-bar__mobile-menu-hamburger {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 2.4em;
  --span-width: 100%;
}
.top-bar__mobile-menu-hamburger span {
  width: var(--span-width);
  height: 2px;
  background-color: var(--span-color, var(--top-bar-color));
  transition: var(--transition);
}
.top-bar__mobile-menu-hamburger span:last-child {
  --span-width: 70%;
}
@media screen and (max-width: 660px) {
  .top-bar__menu {
    display: none;
  }
  .top-bar__mobile-menu {
    display: flex;
  }
}

.mobile-menu {
  position: absolute;
  background-color: var(--color-primary);
  right: 0;
  border-radius: var(--border-radius-big);
  width: clamp(200px, 30cqw, 320px);
  padding: clamp(1.5em, 3cqw, 3em);
  box-shadow: var(--shadow-box);
  z-index: 99;
  transform-origin: right top;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  filter: blur(5px);
  transition: var(--transition);
  overflow: hidden;
}
.mobile-menu.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  filter: blur(0);
}
.mobile-menu__close {
  position: absolute;
  top: -1.5em;
  right: -1.5em;
  width: 2em;
  aspect-ratio: 1/1;
  cursor: pointer;
  opacity: 0.75;
  transition: var(--transition);
  z-index: 10;
  --close-color: var(--color-light);
}
.mobile-menu__close::before, .mobile-menu__close::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.1em;
  background-color: var(--close-color);
  top: 50%;
  left: 0;
}
.mobile-menu__close::before {
  transform: rotate(45deg);
}
.mobile-menu__close::after {
  transform: rotate(-45deg);
}
.mobile-menu__close:hover {
  opacity: 1;
  --close-color: var(--color-white);
}
.mobile-menu__menu {
  display: flex;
  flex-direction: column;
}
.mobile-menu__menu li:not(:first-child) {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 0.5em;
  margin-top: 0.5em;
}
.mobile-menu__menu a {
  color: var(--color-light);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-optical-sizing: auto;
  letter-spacing: var(--letter-spacing);
  font-size: var(--font-size-24);
  padding: 0.25em 0;
  line-height: 1;
  display: block;
}
.mobile-menu__menu .current-menu-item a {
  color: var(--color-white);
}
.mobile-menu__menu a:hover {
  color: var(--color-white);
  transform: translate(0.1em, 0);
}

.footer {
  --background-color: var(--color-secondary-light);
  --font-color: var(--color-secondary);
  background-color: var(--color-secondary-light);
  color: var(--color-secondary);
}
.footer__top {
  padding: calc(var(--gap) * 2) 0 calc(var(--gap) * 1.5);
}
.footer__columns {
  display: flex;
  justify-content: space-between;
  gap: calc(var(--gap) * 2) clamp(var(--gap), 1cqw, 120px);
  flex-wrap: wrap;
}
.footer__column {
  flex-grow: 1;
  max-width: 440px;
}
.footer__title {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-optical-sizing: auto;
  letter-spacing: var(--letter-spacing);
  font-size: var(--font-size-30);
  color: var(--color-secondary);
  margin-bottom: 0.5em;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}
.footer__menu a {
  color: var(--color-main);
  text-decoration: none;
  font-size: var(--font-size-16);
  opacity: 0.75;
  font-weight: var(--font-weight-medium);
}
.footer__menu a:hover {
  color: var(--color-penam);
  opacity: 1;
}
.footer__contacts-text {
  font-size: var(--font-size-16);
  line-height: 1.5;
  max-width: 340px;
}
.footer__contacts-text a {
  font-weight: var(--font-weight-bold);
  color: var(--color-main);
}
.footer__contacts-text a:hover {
  color: var(--color-primary);
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin: 1em 0 2em;
}
.footer__contact-item {
  --item-value-color: var(--color-secondary);
  display: flex;
  flex-direction: column;
  gap: 0em;
  font-size: var(--font-size-18);
  text-decoration: none;
  padding-left: 3em;
}
.footer__contact-item::before {
  content: "";
  width: 2em;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
  top: 0.2em;
  mask: var(--icon-contact) center/contain no-repeat;
  background-color: var(--color-secondary);
}
.footer__contact-item--email {
  --icon-contact: var(--icon-email);
}
.footer__contact-item:hover {
  --item-value-color: var(--color-primary);
}
.footer__contact-item-label {
  font-family: var(--font-handwriting);
  font-size: var(--font-size-16);
  color: var(--color-tertiary);
  display: inline-block;
  transform: rotate(-2deg);
}
.footer__contact-item-value {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-optical-sizing: auto;
  letter-spacing: var(--letter-spacing);
  font-size: var(--font-size-20);
  color: var(--item-value-color);
  transition: var(--transition);
}
.footer__logo {
  flex-shrink: 0;
  width: clamp(100px, 12cqw, 160px);
}
.footer__social-title {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-optical-sizing: auto;
  letter-spacing: var(--letter-spacing);
  font-size: var(--font-size-20);
  color: var(--color-secondary);
  margin-bottom: 0.5em;
  margin-top: 1.5em;
}
.footer__social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.footer__social-link {
  width: 2.4em;
  aspect-ratio: 1/1;
  mask: var(--icon-social) center/contain no-repeat;
  background-color: var(--color-secondary);
}
.footer__social-link:hover {
  background-color: var(--color-primary);
}
.footer__social-link--youtube {
  --icon-social: var(--icon-email);
}
.footer__social-link--instagram {
  --icon-social: var(--icon-email);
}
.footer__social-link--tiktok {
  --icon-social: var(--icon-email);
}
.footer__agrofert {
  padding: var(--gap) 0;
  font-size: var(--font-size-14);
  background-color: #cfe2d2;
}
.footer__agrofert .content {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.footer__agrofert .content p {
  --font-size: var(--font-size-14);
}
.footer__bottom {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 1em 0;
}
.footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-size-14);
  gap: 0.5em var(--gap);
}
.footer__copyright {
  font-size: var(--font-size-14);
  color: var(--color-white);
}
.footer__links a {
  color: var(--color-white);
  text-decoration: underline;
}
.footer__links a:hover {
  color: var(--color-white);
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .footer__columns {
    flex-direction: column;
    text-align: center;
  }
  .footer__column {
    max-width: none;
  }
  .footer__contacts-text {
    margin: 0 auto;
  }
  .footer__contacts {
    flex-direction: row;
    text-align: left;
    justify-content: center;
  }
  .footer__logo {
    margin: 0 auto;
  }
  .footer__social-links {
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .footer__bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

body::-webkit-scrollbar {
  width: 6px;
}
body::-webkit-scrollbar-track {
  background: var(--color-primary);
}
body::-webkit-scrollbar-thumb {
  background: var(--color-secondary, #cbd5e1);
  border-radius: 10px;
}

body.no-scroll {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}