/* ==========================================================================
   Spicea — Masala Chai
   Bold, colour-blocked, oversized-type layout.
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  --espresso:  #23150D;   /* deep roasted brown — the dark canvas */
  --espresso-2:#31200F;
  --gold:      #E9A50F;   /* from the yellow pouch */
  --gold-lite: #FFC64A;
  --violet:    #5426F0;   /* from the blue pouch */
  --violet-lite:#8B6BFF;
  --rust:      #C0451F;   /* star-anise red from the pack artwork */
  --cream:     #FFF4DE;
  --cream-2:   #FBE7C2;

  --ink: var(--espresso);

  /* per-section painting */
  --bg: var(--cream);
  --fg: var(--espresso);
  --accent: var(--gold);

  --wrap: 1280px;
  --gutter: clamp(18px, 4.5vw, 56px);

  /* Baloo 2, not Fredoka — Fredoka ships no Ř Ů Ě Č Ť Ď Ň, so Czech headings
     silently fell back to a system font mid-word. */
  --display: "Baloo 2", ui-rounded, system-ui, sans-serif;
  --body: "DM Sans", ui-sans-serif, system-ui, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
p { margin: 0; text-wrap: pretty; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.02em;
  text-wrap: balance;
}

/* Šablona Shoptetu (Samba i jiné) nastavuje barvu nadpisů vlastním
   pravidlem s vyšší prioritou, které nám přebíjí barvu. Vynutíme si ji
   zpátky podle barvy dané sekce (--fg), a když sekce --fg nedefinuje
   (např. .hero), spadneme zpět na "inherit" = barvu rodiče. */
.hero h1, .hero h2, .hero h3, .hero h4, .hero p,
.band h1, .band h2, .band h3, .band h4, .band p,
.split h1, .split h2, .split h3, .split h4, .split p,
.pcard h1, .pcard h2, .pcard h3, .pcard h4,
.claim h1, .claim h2, .claim h3,
.review p, .shot h2, .shot p {
  color: var(--fg, inherit) !important;
}
/* kicker musí zůstat barvou --accent, ne --fg — musí být napsáno AŽ ZA
   předchozím pravidlem, aby ho v cascade přebilo (obě mají !important). */
.kicker { color: var(--accent) !important; }

:focus-visible { outline: 3px solid var(--violet); outline-offset: 3px; }
.section--dark :focus-visible,
.on-violet :focus-visible { outline-color: var(--gold-lite); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* --- Layout ------------------------------------------------------------- */
.wrap { width: min(var(--wrap), 100%); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--wide { width: min(1560px, 100%); }

.band { background: var(--bg); color: var(--fg); padding-block: clamp(64px, 9vw, 130px); }
.band--espresso { --bg: var(--espresso); --fg: var(--cream);   --accent: var(--gold); }
.band--gold     { --bg: var(--gold);     --fg: var(--espresso);--accent: var(--espresso); }
.band--violet   { --bg: var(--violet);   --fg: #fff;           --accent: var(--gold-lite); }
.band--cream    { --bg: var(--cream);    --fg: var(--espresso);--accent: var(--violet); }
.band--flush    { padding-block: 0; }

/* --- Type scale --------------------------------------------------------- */
/* Czech caps carry háček/čárka/kroužek, so the line box needs real headroom —
   anything under ~1.0 clips them against the line above. */
.mega {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(46px, 10.5vw, 142px);
  line-height: 1.02;
  letter-spacing: -.012em;
  word-spacing: .06em;
  text-transform: uppercase;
}

.h2 { font-size: clamp(32px, 5.4vw, 72px); line-height: 1.04; letter-spacing: -.012em; text-transform: uppercase; }
.h3 { font-size: clamp(21px, 2.4vw, 30px); }

.kicker {
  font-family: var(--display);
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
}

.lede { font-size: clamp(16px, 1.7vw, 20px); max-width: 46ch; }
.muted { opacity: .74; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border: 2.5px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}
.btn:hover { transform: translateY(-3px); }

.btn--solid { background: var(--espresso); border-color: var(--espresso); color: var(--cream); }
.btn--solid:hover { background: var(--violet); border-color: var(--violet); color: #fff; }

.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--espresso); }
.btn--gold:hover { background: var(--gold-lite); border-color: var(--gold-lite); }

.btn--cream { background: var(--cream); border-color: var(--cream); color: var(--espresso); }
.btn--cream:hover { background: #fff; border-color: #fff; }

.btn--ghost:hover { background: currentColor; }
.btn--ghost:hover span { color: var(--bg); }

.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 12px 22px; font-size: 13px; }

/* --- Wrappers -------------------------------------------------- */
.overall-wrapper {
  background-color: #d0b397 !important;
}
.welcome-wrapper {
  background-color: #d0b397 !important;
}
.content.content.wide {
  background-color: #d0b397 !important;
}


/* --- Infinite top bar -------------------------------------------------- */
.spicea-topbar {
  --topbar-gap: clamp(20px, 5vw, 60px);
  --topbar-speed: 14s;

  position: relative;
  z-index: 20;
  overflow: hidden;
  background: var(--violet);
  color: #fff;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.spicea-topbar__track {
  display: flex;
  width: max-content;
  animation: spicea-topbar-slide var(--topbar-speed) linear infinite;
  will-change: transform;
}

.spicea-topbar__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: var(--topbar-gap);
  margin: 0;
  padding: 9px var(--topbar-gap) 9px var(--gutter);
  list-style: none;
  white-space: nowrap;
}

.spicea-topbar__group li::before {
  content: "✦ ";
  color: var(--gold-lite);
}

/* Začíná vlevo mimo obrazovku a pohybuje se doprava */
@keyframes spicea-topbar-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.spicea-topbar:hover .spicea-topbar__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .spicea-topbar__track {
    animation: none;
  }
}

/* --- Header ------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--espresso);
  color: var(--cream);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
}
.logo {
  width: clamp(104px, 10vw, 140px);
  aspect-ratio: 3477 / 1149;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='3477' height='1149' viewBox='0 0 3477 1149' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M991.727 302.14C1049.68 299.302 1103.81 311.175 1154.13 337.756C1204.44 364.337 1245.28 401.367 1276.65 448.844C1288.2 466.319 1297.81 484.505 1305.49 503.4C1315.21 480.529 1327.19 462.781 1341.43 450.156C1362.33 431.615 1391.03 423.886 1427.51 426.969C1466.88 430.295 1494.71 444.25 1511.01 468.835C1528.34 492.541 1537.95 527.681 1539.81 574.255C1539.83 574.428 1539.83 574.601 1539.85 574.774C1554.43 542.46 1574.07 513.058 1598.77 486.569C1640.23 442.742 1689.93 410.269 1747.87 389.152C1803.09 369.024 1856.84 361.739 1909.12 367.298C1961.4 372.857 2006.2 388.836 2043.51 415.235C2080.49 440.727 2105.91 472.485 2119.77 510.508C2131.32 542.194 2130.27 570.267 2116.62 594.727C2103.88 618.857 2078.5 637.852 2040.48 651.71C2020.56 658.969 2003.85 660.958 1990.35 657.675C1976.84 654.392 1961.57 647.653 1944.52 637.457C1928.7 627.837 1914.66 621.674 1902.4 618.966C1890.7 615.023 1876.26 616.186 1859.05 622.455C1834.61 631.364 1816.92 647.554 1805.99 671.025C1794.73 693.59 1793.89 717.999 1803.45 744.253C1813.35 771.413 1829.42 790.17 1851.66 800.527C1874.8 810.553 1899.04 810.946 1924.39 801.707C1940.68 795.768 1952.53 788.885 1959.94 781.059C1967.34 773.233 1974.66 762.361 1981.89 748.443C1990.61 732.959 1999.57 720.975 2008.79 712.489C2017.67 703.097 2032.52 694.607 2053.34 687.018C2087.2 674.678 2116.92 673.234 2142.51 682.681C2144.87 626.228 2159.69 573.795 2186.98 525.383C2217.81 472.387 2260.21 429.989 2314.17 398.192C2368.13 366.394 2429.32 350.495 2497.73 350.495C2559.4 350.495 2613.84 363.022 2661.05 388.074C2689.1 402.956 2713.24 420.729 2733.46 441.391C2765.81 411.769 2800.93 388.027 2838.82 370.165C2917.39 333.129 2990 316.982 3056.63 321.726C3123.75 325.109 3181.12 344.953 3228.73 381.255C3277.27 417.122 3315.27 464.172 3342.72 522.407C3357.53 553.836 3368.49 584.261 3375.58 613.682C3383.59 642.667 3386.92 666.516 3385.57 685.227C3403.74 690.219 3419.55 698.586 3432.99 710.325C3447.36 721.629 3458.25 735.139 3465.65 750.853C3478.29 777.659 3479.94 805.126 3470.6 833.252C3462.19 860.942 3443.19 881.759 3413.61 895.702C3391.43 906.16 3371.88 911.421 3354.96 911.487C3338.05 911.552 3318.46 908.355 3296.21 901.897C3279.64 926.655 3259.01 948.806 3234.33 968.348C3210.58 987.454 3178.36 1006.59 3137.69 1025.77C3065.59 1059.75 2998.8 1071.46 2937.33 1060.89C2878.83 1050.03 2833.12 1017.05 2803.63 961.173C2794.1 941.359 2786.61 917.482 2783.01 888.733C2778.5 852.73 2802.84 793.134 2821.03 768.403C2911.61 645.267 3038.25 605.829 3097.24 590.986C3133.78 581.803 3164.23 574.461 3185.59 574.757C3177.43 569.134 3098.08 558.678 3053.63 564.685C3010.82 570.469 2957.05 586.857 2935.09 599.946C2907.34 616.495 2884.4 626.061 2844.14 668.602C2800.73 714.479 2801.41 712.564 2774.07 737.073C2715.44 789.624 2649.74 806.556 2615.28 815.43C2527.33 838.084 2456.28 826.825 2435.24 822.969C2404.45 817.333 2379.33 808.991 2361.44 802.008C2395.2 837.627 2429.64 854.176 2449.79 861.95C2458.75 865.399 2527.68 891.043 2598.51 872.53C2607.28 870.243 2618.17 866.734 2635.42 864.695C2665.6 861.135 2694.16 857.773 2714.81 875.892C2731.45 890.476 2737.6 914.293 2734.94 934.092C2733.85 942.208 2731.34 949.212 2728.11 955.301C2719.21 970.849 2704.09 985.089 2682.73 998.015C2646.12 1019.21 2586.86 1029.81 2504.95 1029.81C2433.65 1029.81 2370.54 1015.84 2315.61 987.897C2260.83 960.026 2218.04 921.132 2187.22 871.216C2172.52 897.201 2151.18 922.184 2123.18 946.161C2085.67 978.295 2039.3 1004.43 1984.07 1024.55C1926.13 1045.67 1866.25 1051.6 1804.42 1042.35C1743.16 1031.85 1688.23 1007.77 1639.63 970.106C1591.03 932.438 1555.68 883.275 1533.57 822.619C1532.14 818.7 1530.78 814.791 1529.49 810.893C1523.87 862.615 1516.61 904.674 1507.71 937.07C1497.5 977.788 1481.94 1007.42 1461.04 1025.96C1440.13 1044.5 1411.43 1052.23 1374.95 1049.15C1335.58 1045.82 1307.23 1032.3 1289.89 1008.6C1273.6 984.013 1263.99 948.873 1261.09 903.178C1260.15 879.816 1260.35 851.683 1261.67 818.78C1239.44 847.735 1212.66 872.567 1181.33 893.271C1133.85 924.64 1081.13 941.744 1023.18 944.581C987.87 946.31 954.598 943.401 923.368 935.854C892.094 927.401 865.193 915.557 842.663 900.323C845.5 958.273 845.883 1003.18 843.813 1035.05C841.743 1066.92 833.047 1093.22 817.724 1113.93C803.35 1135.51 778.959 1147.15 744.551 1148.83C700.182 1151 666.928 1129.94 644.791 1085.64C623.557 1043.94 609.148 996.028 601.559 941.916C595.782 948.548 589.416 955.039 582.458 961.387C532.618 1007.53 459.953 1040 364.465 1058.8C281.267 1075.18 212.388 1074.49 157.829 1056.75C103.27 1039.01 71.7107 1008.4 63.1503 964.909C57.5674 936.547 62.7417 912.941 78.6727 894.092C95.3631 874.112 118.835 861.144 149.089 855.189C166.106 851.839 180.28 851.504 191.61 854.184C202.94 856.864 214.643 861.435 226.718 867.897C235.584 873.026 242.66 876.544 247.945 878.449C254.176 880.169 261.073 880.285 268.637 878.796C288.491 874.888 297.022 865.843 294.23 851.661C291.625 838.426 284.471 829.522 272.768 824.951C260.88 819.435 241.149 813.99 213.575 808.614C188.079 803.813 171.177 800.265 162.869 797.972C115.285 785.733 78.3021 767.479 51.9198 743.21C25.5375 718.941 9.18261 690.735 2.85535 658.59C-4.21629 622.664 1.84743 586.116 21.0468 548.947C41.0054 510.646 72.6668 476.916 116.03 447.757C160.153 417.467 213.413 396.181 275.811 383.899C329.701 373.291 379.879 371.271 426.347 377.837C473.759 384.217 512.834 398.131 543.571 419.578C564.593 433.685 579.835 450.325 589.3 469.496C595.319 435.758 604.983 405.128 618.292 377.607C638.073 336.701 670.148 315.163 714.516 312.99C760.696 310.729 795.086 327.199 817.685 362.399C837.758 345.986 862.965 332.498 893.308 321.936C924.513 310.424 957.319 303.825 991.727 302.14ZM3110.52 777.597C3095.51 774.506 3078.3 777.536 3058.89 786.686C3039.47 795.836 3025.72 807.403 3017.62 821.387C3010.45 834.935 3009.7 847.717 3015.37 859.734C3021.03 871.75 3031.37 879.304 3046.38 882.395C3062.32 885.05 3080 881.802 3099.41 872.653C3118.82 863.503 3132.11 852.153 3139.28 838.605C3147.38 824.621 3148.59 811.62 3142.93 799.604C3137.26 787.587 3126.46 780.252 3110.52 777.597ZM1059.16 567.05C1041.07 549.783 1020.25 541.726 996.708 542.879C973.165 544.032 952.782 554.106 935.559 573.103C919.198 591.149 911.593 611.943 912.746 635.486C913.899 659.028 923.52 679.433 941.611 696.7C960.563 713.018 981.811 720.601 1005.35 719.448C1028.9 718.296 1048.85 708.695 1065.21 690.649C1082.43 671.652 1090.47 650.383 1089.32 626.84C1088.16 603.298 1078.11 583.367 1059.16 567.05ZM581.468 571.644C566.459 589.04 544.001 600.684 514.09 606.572C501.799 608.991 491.686 610 483.751 609.598C476.575 608.064 466.755 605.577 454.294 602.138C446.931 599.659 439.189 597.746 431.067 596.399C423.891 594.865 416.049 594.935 407.54 596.61C399.977 598.098 393.916 602.238 389.36 609.027C384.618 614.87 382.992 621.574 384.48 629.138C387.272 643.319 399.719 651.672 421.82 654.196C480.191 661.365 528.621 675.402 567.107 696.306C573.095 699.452 578.736 702.918 584.034 706.698C581.693 657.672 580.838 612.654 581.468 571.644ZM2491.95 551.4C2465.93 551.4 2445.21 559.59 2429.8 575.971C2415.34 591.388 2410.36 609.426 2415.3 628.052C2419.42 643.552 2428.35 651.611 2442.8 658.356C2458.22 664.137 2475.08 667.029 2493.39 667.029C2514.59 667.028 2532.9 662.21 2548.32 652.574C2564.7 642.939 2572.89 630.412 2572.89 614.995C2572.89 597.651 2565.66 582.716 2551.21 570.19C2537.72 557.663 2517.96 551.4 2491.95 551.4ZM1339.61 42.4104C1375.18 10.6034 1416.49 -3.31257 1463.53 0.662347C1509.62 4.55625 1547.53 25.1651 1577.25 62.4885C1608.02 98.933 1621.37 141.159 1617.32 189.166C1613.18 238.134 1592.85 278.481 1556.32 310.207C1520.84 341.054 1480.05 354.531 1433.96 350.637C1386.92 346.662 1348.49 326.493 1318.68 290.129C1288.96 252.806 1276.17 209.66 1280.3 160.693C1284.36 112.685 1304.13 73.2575 1339.61 42.4104Z' fill='currentColor'/%3E %3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='3477' height='1149' viewBox='0 0 3477 1149' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M991.727 302.14C1049.68 299.302 1103.81 311.175 1154.13 337.756C1204.44 364.337 1245.28 401.367 1276.65 448.844C1288.2 466.319 1297.81 484.505 1305.49 503.4C1315.21 480.529 1327.19 462.781 1341.43 450.156C1362.33 431.615 1391.03 423.886 1427.51 426.969C1466.88 430.295 1494.71 444.25 1511.01 468.835C1528.34 492.541 1537.95 527.681 1539.81 574.255C1539.83 574.428 1539.83 574.601 1539.85 574.774C1554.43 542.46 1574.07 513.058 1598.77 486.569C1640.23 442.742 1689.93 410.269 1747.87 389.152C1803.09 369.024 1856.84 361.739 1909.12 367.298C1961.4 372.857 2006.2 388.836 2043.51 415.235C2080.49 440.727 2105.91 472.485 2119.77 510.508C2131.32 542.194 2130.27 570.267 2116.62 594.727C2103.88 618.857 2078.5 637.852 2040.48 651.71C2020.56 658.969 2003.85 660.958 1990.35 657.675C1976.84 654.392 1961.57 647.653 1944.52 637.457C1928.7 627.837 1914.66 621.674 1902.4 618.966C1890.7 615.023 1876.26 616.186 1859.05 622.455C1834.61 631.364 1816.92 647.554 1805.99 671.025C1794.73 693.59 1793.89 717.999 1803.45 744.253C1813.35 771.413 1829.42 790.17 1851.66 800.527C1874.8 810.553 1899.04 810.946 1924.39 801.707C1940.68 795.768 1952.53 788.885 1959.94 781.059C1967.34 773.233 1974.66 762.361 1981.89 748.443C1990.61 732.959 1999.57 720.975 2008.79 712.489C2017.67 703.097 2032.52 694.607 2053.34 687.018C2087.2 674.678 2116.92 673.234 2142.51 682.681C2144.87 626.228 2159.69 573.795 2186.98 525.383C2217.81 472.387 2260.21 429.989 2314.17 398.192C2368.13 366.394 2429.32 350.495 2497.73 350.495C2559.4 350.495 2613.84 363.022 2661.05 388.074C2689.1 402.956 2713.24 420.729 2733.46 441.391C2765.81 411.769 2800.93 388.027 2838.82 370.165C2917.39 333.129 2990 316.982 3056.63 321.726C3123.75 325.109 3181.12 344.953 3228.73 381.255C3277.27 417.122 3315.27 464.172 3342.72 522.407C3357.53 553.836 3368.49 584.261 3375.58 613.682C3383.59 642.667 3386.92 666.516 3385.57 685.227C3403.74 690.219 3419.55 698.586 3432.99 710.325C3447.36 721.629 3458.25 735.139 3465.65 750.853C3478.29 777.659 3479.94 805.126 3470.6 833.252C3462.19 860.942 3443.19 881.759 3413.61 895.702C3391.43 906.16 3371.88 911.421 3354.96 911.487C3338.05 911.552 3318.46 908.355 3296.21 901.897C3279.64 926.655 3259.01 948.806 3234.33 968.348C3210.58 987.454 3178.36 1006.59 3137.69 1025.77C3065.59 1059.75 2998.8 1071.46 2937.33 1060.89C2878.83 1050.03 2833.12 1017.05 2803.63 961.173C2794.1 941.359 2786.61 917.482 2783.01 888.733C2778.5 852.73 2802.84 793.134 2821.03 768.403C2911.61 645.267 3038.25 605.829 3097.24 590.986C3133.78 581.803 3164.23 574.461 3185.59 574.757C3177.43 569.134 3098.08 558.678 3053.63 564.685C3010.82 570.469 2957.05 586.857 2935.09 599.946C2907.34 616.495 2884.4 626.061 2844.14 668.602C2800.73 714.479 2801.41 712.564 2774.07 737.073C2715.44 789.624 2649.74 806.556 2615.28 815.43C2527.33 838.084 2456.28 826.825 2435.24 822.969C2404.45 817.333 2379.33 808.991 2361.44 802.008C2395.2 837.627 2429.64 854.176 2449.79 861.95C2458.75 865.399 2527.68 891.043 2598.51 872.53C2607.28 870.243 2618.17 866.734 2635.42 864.695C2665.6 861.135 2694.16 857.773 2714.81 875.892C2731.45 890.476 2737.6 914.293 2734.94 934.092C2733.85 942.208 2731.34 949.212 2728.11 955.301C2719.21 970.849 2704.09 985.089 2682.73 998.015C2646.12 1019.21 2586.86 1029.81 2504.95 1029.81C2433.65 1029.81 2370.54 1015.84 2315.61 987.897C2260.83 960.026 2218.04 921.132 2187.22 871.216C2172.52 897.201 2151.18 922.184 2123.18 946.161C2085.67 978.295 2039.3 1004.43 1984.07 1024.55C1926.13 1045.67 1866.25 1051.6 1804.42 1042.35C1743.16 1031.85 1688.23 1007.77 1639.63 970.106C1591.03 932.438 1555.68 883.275 1533.57 822.619C1532.14 818.7 1530.78 814.791 1529.49 810.893C1523.87 862.615 1516.61 904.674 1507.71 937.07C1497.5 977.788 1481.94 1007.42 1461.04 1025.96C1440.13 1044.5 1411.43 1052.23 1374.95 1049.15C1335.58 1045.82 1307.23 1032.3 1289.89 1008.6C1273.6 984.013 1263.99 948.873 1261.09 903.178C1260.15 879.816 1260.35 851.683 1261.67 818.78C1239.44 847.735 1212.66 872.567 1181.33 893.271C1133.85 924.64 1081.13 941.744 1023.18 944.581C987.87 946.31 954.598 943.401 923.368 935.854C892.094 927.401 865.193 915.557 842.663 900.323C845.5 958.273 845.883 1003.18 843.813 1035.05C841.743 1066.92 833.047 1093.22 817.724 1113.93C803.35 1135.51 778.959 1147.15 744.551 1148.83C700.182 1151 666.928 1129.94 644.791 1085.64C623.557 1043.94 609.148 996.028 601.559 941.916C595.782 948.548 589.416 955.039 582.458 961.387C532.618 1007.53 459.953 1040 364.465 1058.8C281.267 1075.18 212.388 1074.49 157.829 1056.75C103.27 1039.01 71.7107 1008.4 63.1503 964.909C57.5674 936.547 62.7417 912.941 78.6727 894.092C95.3631 874.112 118.835 861.144 149.089 855.189C166.106 851.839 180.28 851.504 191.61 854.184C202.94 856.864 214.643 861.435 226.718 867.897C235.584 873.026 242.66 876.544 247.945 878.449C254.176 880.169 261.073 880.285 268.637 878.796C288.491 874.888 297.022 865.843 294.23 851.661C291.625 838.426 284.471 829.522 272.768 824.951C260.88 819.435 241.149 813.99 213.575 808.614C188.079 803.813 171.177 800.265 162.869 797.972C115.285 785.733 78.3021 767.479 51.9198 743.21C25.5375 718.941 9.18261 690.735 2.85535 658.59C-4.21629 622.664 1.84743 586.116 21.0468 548.947C41.0054 510.646 72.6668 476.916 116.03 447.757C160.153 417.467 213.413 396.181 275.811 383.899C329.701 373.291 379.879 371.271 426.347 377.837C473.759 384.217 512.834 398.131 543.571 419.578C564.593 433.685 579.835 450.325 589.3 469.496C595.319 435.758 604.983 405.128 618.292 377.607C638.073 336.701 670.148 315.163 714.516 312.99C760.696 310.729 795.086 327.199 817.685 362.399C837.758 345.986 862.965 332.498 893.308 321.936C924.513 310.424 957.319 303.825 991.727 302.14ZM3110.52 777.597C3095.51 774.506 3078.3 777.536 3058.89 786.686C3039.47 795.836 3025.72 807.403 3017.62 821.387C3010.45 834.935 3009.7 847.717 3015.37 859.734C3021.03 871.75 3031.37 879.304 3046.38 882.395C3062.32 885.05 3080 881.802 3099.41 872.653C3118.82 863.503 3132.11 852.153 3139.28 838.605C3147.38 824.621 3148.59 811.62 3142.93 799.604C3137.26 787.587 3126.46 780.252 3110.52 777.597ZM1059.16 567.05C1041.07 549.783 1020.25 541.726 996.708 542.879C973.165 544.032 952.782 554.106 935.559 573.103C919.198 591.149 911.593 611.943 912.746 635.486C913.899 659.028 923.52 679.433 941.611 696.7C960.563 713.018 981.811 720.601 1005.35 719.448C1028.9 718.296 1048.85 708.695 1065.21 690.649C1082.43 671.652 1090.47 650.383 1089.32 626.84C1088.16 603.298 1078.11 583.367 1059.16 567.05ZM581.468 571.644C566.459 589.04 544.001 600.684 514.09 606.572C501.799 608.991 491.686 610 483.751 609.598C476.575 608.064 466.755 605.577 454.294 602.138C446.931 599.659 439.189 597.746 431.067 596.399C423.891 594.865 416.049 594.935 407.54 596.61C399.977 598.098 393.916 602.238 389.36 609.027C384.618 614.87 382.992 621.574 384.48 629.138C387.272 643.319 399.719 651.672 421.82 654.196C480.191 661.365 528.621 675.402 567.107 696.306C573.095 699.452 578.736 702.918 584.034 706.698C581.693 657.672 580.838 612.654 581.468 571.644ZM2491.95 551.4C2465.93 551.4 2445.21 559.59 2429.8 575.971C2415.34 591.388 2410.36 609.426 2415.3 628.052C2419.42 643.552 2428.35 651.611 2442.8 658.356C2458.22 664.137 2475.08 667.029 2493.39 667.029C2514.59 667.028 2532.9 662.21 2548.32 652.574C2564.7 642.939 2572.89 630.412 2572.89 614.995C2572.89 597.651 2565.66 582.716 2551.21 570.19C2537.72 557.663 2517.96 551.4 2491.95 551.4ZM1339.61 42.4104C1375.18 10.6034 1416.49 -3.31257 1463.53 0.662347C1509.62 4.55625 1547.53 25.1651 1577.25 62.4885C1608.02 98.933 1621.37 141.159 1617.32 189.166C1613.18 238.134 1592.85 278.481 1556.32 310.207C1520.84 341.054 1480.05 354.531 1433.96 350.637C1386.92 346.662 1348.49 326.493 1318.68 290.129C1288.96 252.806 1276.17 209.66 1280.3 160.693C1284.36 112.685 1304.13 73.2575 1339.61 42.4104Z' fill='currentColor'/%3E %3C/svg%3E") center / contain no-repeat;
}
.header .logo { color: #fff; }

.nav { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 30px); }
.nav a {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .16s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--gold); }

.header__end { display: flex; align-items: center; gap: 10px; }

.cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.cart:hover { background: var(--gold); color: var(--espresso); }

.burger {
  display: none;
  width: 44px; height: 44px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}
.burger span, .burger span::before, .burger span::after {
  display: block; width: 18px; height: 2.5px;
  margin-inline: auto; border-radius: 2px;
  background: var(--gold); content: "";
  transition: transform .2s var(--ease), background-color .2s var(--ease);
}
.burger span::before { transform: translateY(-6px); }
.burger span::after  { transform: translateY(3.5px); }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { transform: rotate(-45deg) translateY(-2.5px); }

@media (max-width: 900px) {
  .burger { display: block; }
  .nav {
    position: fixed;
    inset: 68px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px var(--gutter) 22px;
    background: var(--espresso);
    border-bottom: 3px solid var(--gold);
    opacity: 0; visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  }
  .nav[data-open="true"] { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 15px 0; font-size: 17px; border-bottom: 1px solid rgba(255,255,255,.12); }
}

/* --- Hero ---------------------------------------------------------------
   Built on the supplied 3:1 banner: the artwork keeps its copy space on the
   left, so the headline sits over that and the pouches stay untouched on the
   right. Below 900px the banner drops under the copy instead of behind it.
   ------------------------------------------------------------------------ */
/* Shoptet vkládá obsah titulní strany do vlastního omezeného kontejneru.
   Tenhle "breakout" trik roztáhne sekci přes celou šířku obrazovky bez
   ohledu na to, jaký max-width/padding jí Shoptet dá. */
.hero, .band, .marquee, .shot {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* Shoptetův WYSIWYG editor u titulní strany automaticky přidává prázdné
   <p>&nbsp;</p> na začátek a konec obsahu. Nejde je selektovat čistě přes
   CSS (nemá přístup k textovému obsahu), takže první/poslední sekci
   označenou ID prostě "vytáhneme" nahoru/dolů přes tu mezeru.
   Číslo dolaď v inspektoru prohlížeče podle skutečné výšky mezery. */
#content-start { margin-top: -90px; position: relative; z-index: 1; }
#content-end   { margin-bottom: -110px; }

.hero {
  display: flex;
  align-items: center;
  /* 100/3.04 = 32.9vw reproduces the banner's own ratio, so `cover` has nothing
     to crop away. It has to be a min-height, not aspect-ratio: once the copy is
     taller than that (narrow desktop widths) the box must grow with it, and the
     banner crops sideways instead of the text spilling out. */
  min-height: max(400px, 32.9vw);
  background: #EFE0D0;           /* sampled from the banner backdrop */
  color: var(--espresso);
  isolation: isolate;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
/* .hero__copy is also the .wrap — capping its width here would centre the
   whole column, so the measure is set on the children instead. */
.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-block: clamp(32px, 4vw, 60px);
}
.hero__copy > * { max-width: min(46ch, 52%); }

/* decorative sparkles over the banner's empty left half */
.spark { position: absolute; z-index: 1; pointer-events: none; }
.spark svg { width: 100%; height: auto; }
.spark--1 { top: 13%; left: 6%;  width: clamp(16px, 2vw, 30px); color: var(--gold); }
.spark--2 { top: 30%; left: 46%; width: clamp(12px, 1.5vw, 22px); color: var(--rust); }
.spark--3 { top: 11%; right: 31%; width: clamp(13px, 1.7vw, 25px); color: var(--violet); }
.spark--4 { top: 9%;  left: 33%; width: clamp(11px, 1.3vw, 19px); color: var(--violet-lite); }
.hero__copy h1 {
  font-size: clamp(38px, 5.2vw, 74px);
  line-height: 1.04;
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.hero__sub { max-width: 40ch; font-size: clamp(15px, 1.6vw, 19px); opacity: .8; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3.4vw, 44px);
  margin-top: 12px;
  padding-top: 22px;
  border-top: 2px solid rgba(35, 21, 13, .18);
}
.hero__stats b { display: block; font-family: var(--display); font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; line-height: 1.1; }
.hero__stats span { font-size: 13px; opacity: .7; }

@media (max-width: 1100px) {
  .hero { flex-direction: column; align-items: stretch; aspect-ratio: auto; min-height: 0; }
  .hero__bg { position: static; height: auto; aspect-ratio: 16 / 10; object-position: 76% center; order: 2; }
  .hero__copy { padding-block: clamp(36px, 8vw, 56px) clamp(26px, 5vw, 36px); }
  .hero__copy > * { max-width: none; }
  /* the copy runs full-width here, so anything overlapping it has to go */
  .spark--1, .spark--2, .spark--4 { display: none; }
  .spark--3 { bottom: auto; top: 8%; right: 5%; left: auto; }
}

/* --- Marquee ------------------------------------------------------------ */
.marquee {
  background: var(--gold);
  color: var(--espresso);
  border-block: 3px solid var(--espresso);
  padding-block: 14px;
  overflow: hidden;
  --dur: 10s;
}
.marquee--violet { background: var(--violet); color: #fff; border-color: var(--gold); }
.marquee--espresso { background: var(--espresso); color: var(--gold); border-color: var(--gold); }

.marquee__track { display: flex; width: max-content; animation: slide var(--dur) linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: clamp(22px, 3vw, 40px); padding-right: clamp(22px, 3vw, 40px); }
.marquee__item {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--display);
  font-size: clamp(14px, 1.5vw, 19px);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__sep { font-size: clamp(15px, 1.6vw, 21px); opacity: .55; }
.marquee__item .ico { width: clamp(22px, 2.2vw, 30px); height: clamp(22px, 2.2vw, 30px); }

@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; }
  .marquee__track { animation: none; }
}

/* --- Spice icons (CSS masks so they inherit `color`) --------------------
   The url()s must stay in this file: relative URLs inside a custom property
   resolve against the stylesheet, not the document.
   ------------------------------------------------------------------------ */
.ico {
  display: inline-block;
  background-color: currentColor;
  -webkit-mask: var(--m) center / contain no-repeat;
  mask: var(--m) center / contain no-repeat;
}
.ico--skorice           { --m: url("data:image/svg+xml,%3Csvg width='406' height='318' viewBox='0 0 406 318' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M121.908 191.705C103.506 195.015 85.6039 203.31 67.2889 206.592C19.5145 215.142 4.36289 140.581 34.6621 127.415C43.2685 123.674 61.7866 120.908 71.8619 118.686C141.792 103.231 217.151 87.9588 287.853 77.176C295.445 76.0136 308.946 73.0813 315.978 73.5429C320.323 73.8326 325.594 76.6929 327.507 76.6448C330.313 76.5766 342.476 68.1495 346.689 66.5428C352.62 64.2817 357.854 63.143 363.956 66.547C366.599 68.0248 368.588 73.4948 369.837 73.8611C370.674 74.106 376.7 72.3838 379.456 72.8243C396.808 75.5571 403.014 95.3282 397.279 110.446C393.558 120.254 359.102 140.471 348.741 147.073C303.495 175.879 257.344 203.941 211.533 231.867C195.897 241.399 162.72 264.699 147.443 269.497C119.644 278.227 81.9403 246.57 91.323 217.107C95.6924 203.387 111.074 198.75 121.91 191.694L121.908 191.705ZM131.82 221.459C133.404 222.265 133.749 221.392 134.823 220.948C156.907 211.744 190.875 178.585 211.513 163.195C257.875 128.636 309.068 110.896 356.685 81.8381C358.048 81.0054 363.9 77.6897 363.608 76.3363C359.996 70.1909 355.091 70.7526 349.21 73.3242L116.285 202.059C116.878 204.122 120.84 204.262 123.06 205.72C127.491 208.623 133.06 215.883 131.82 221.459ZM162.069 253.189L384.891 114.835C400.715 102.101 389.578 72.8507 368.906 81.5902C316.396 110.935 259.82 135.631 210.983 171.158C188.584 187.459 169.025 207.76 144.542 221.247C158.365 225.016 165.736 239.517 162.058 253.187L162.069 253.189ZM318.02 81.781C309.214 80.4853 299.55 83.0006 290.654 84.3852C223.501 94.8523 153.731 109.164 87.0968 123.039C76.8564 125.168 64.2287 127.13 54.466 130.005C53.6423 130.248 51.0531 131.042 51.4169 131.891C57.0226 135.133 59.1198 142.23 58.8827 148.466C109.126 132.937 160.239 120.025 211.837 109.694C237.365 104.581 266.668 101.761 291.296 95.6054C300.427 93.3242 309.909 86.6758 318.017 81.792L318.02 81.781ZM280.18 102.672C208.641 114.363 138.224 131.7 68.2821 150.452C68.808 153.331 72.2204 153.724 74.0476 155.735C84.5832 167.36 84.8139 182.519 78.2602 196.369L150.661 175.135L280.18 102.672ZM40.1455 152.606L47.7625 154.84C62.358 141.86 40.3755 123.828 30.7818 140.454C20.3912 158.458 28.6625 188.445 47.7383 197.688C71.9026 209.395 83.9971 181.356 72.1117 163.195C64.5751 151.68 49.4594 153.351 51.7346 168.882C52.6392 169.902 57.702 161.668 63.2287 163.694C76.0626 168.385 73.5167 190.944 59.1285 194.093C37.4497 198.838 22.015 159.514 34.4264 144.576C38.9778 139.107 48.6173 138.686 45.7137 148.008C37.9316 139.695 35.6311 153.999 35.2114 160.117C34.4043 171.76 45.2141 192.405 58.9367 189.404C66.6488 187.725 70.2114 170.87 60.406 169.665C57.6002 170.887 52.6646 177.855 49.5396 175.653C42.3242 170.574 46.2966 159.238 45.7904 158.463C45.5111 158.035 38.3222 157.114 40.1653 152.622L40.1455 152.606ZM121.393 225.96C120.793 226.618 116.342 226.503 116.363 229.149C116.391 232.915 125.176 232.061 126.281 225.591C128.604 211.948 108.76 203.063 101.081 214.531C85.4285 237.924 122.618 271.1 145.561 262.203C162.25 255.73 158.047 228.894 140.342 227.898C133.456 227.513 130.038 233.901 134.414 239.261C145.623 225.985 159.043 243.372 148.967 254.279C130.699 274.032 90.5078 236.973 103.861 218.76C112.173 207.413 127.268 219.408 121.395 225.949L121.393 225.96ZM115.876 220.429C102.441 217.008 106.063 233.157 111.176 240.171C117.05 248.233 126.451 254.441 136.712 254.52C142.711 254.568 148.739 249.213 146.219 243.032C143.351 235.981 140.273 244.321 137.239 245.091C131.63 246.531 126.435 241.991 126.316 236.464C125.01 235.048 118.267 242.052 112.283 234.682C104.952 225.645 116.458 221.059 115.876 220.429Z' fill='currentColor'/%3E %3Cpath d='M282.706 169.983L370.226 115.704C367.708 120.331 361.197 124.639 356.734 127.877C338.001 141.5 310.375 157.972 289.45 167.916C287.464 168.86 284.927 170.45 282.698 169.97L282.706 169.983Z' fill='currentColor'/%3E %3Cpath d='M218.991 209.667L172.228 240.207C172.227 237.958 173.338 237.338 174.758 236.067C183.053 228.65 201.415 217.176 211.547 212.106C213.711 211.027 216.516 209.262 218.994 209.656L218.991 209.667Z' fill='currentColor'/%3E %3Cpath d='M387.606 104.352C389.023 106.83 378.773 115.543 375.356 113.303C374 111.357 386.55 102.515 387.606 104.352Z' fill='currentColor'/%3E %3Cpath d='M225.697 205.31C224.626 201.625 236.252 196.523 236.602 197.219C237.673 200.904 226.047 206.007 225.697 205.31Z' fill='currentColor'/%3E %3Cpath d='M231.165 118.805L158.163 136.914C158.441 134.274 161.334 133.405 163.327 132.428C181.991 123.312 210.595 121.072 231.165 118.805Z' fill='currentColor'/%3E %3Cpath d='M145.653 168.913L126.908 175.946L92.8353 184.34C92.9908 181.512 93.1655 181.999 94.94 180.964C97.9346 179.228 108.897 176.57 113.14 175.316C119.806 173.347 133.791 168.821 139.989 168.254C141.963 168.081 143.768 168.333 145.642 168.911L145.653 168.913Z' fill='currentColor'/%3E %3Cpath d='M173.917 177.139C173.956 179.316 172.196 179.511 170.906 180.544C165.73 184.648 157.062 189.345 151.095 192.544C145.336 195.637 138.462 199.915 132.081 200.64C142.829 192.631 154.405 185.407 166.575 179.75C167.829 179.159 173.265 176.125 173.917 177.139Z' fill='currentColor'/%3E %3C/svg%3E"); }
.ico--kardamom          { --m: url("data:image/svg+xml,%3Csvg width='334' height='296' viewBox='0 0 334 296' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M188.975 55.8975C198.673 55.2914 208.402 57.1986 217.435 60.7025C221.93 62.4471 245.496 75.4428 247.285 78.1632C249.592 81.6967 250.242 87.3888 248.926 91.4693C247.211 96.8214 224.162 118.052 218.411 121.586C197.077 134.685 154.512 139.726 131.329 130.545C123.523 127.455 114.49 118.924 107.689 117.224C98.8033 115.006 84.8909 119.545 85.3197 105.411C85.7041 93.0513 94.1018 97.7824 100.237 95.0768C105.382 92.8 112.716 82.6134 116.515 78.104C103.579 78.932 91.2779 77.01 79.4945 71.4953C75.4436 69.6029 59.0474 59.6233 56.401 56.8733C40.4483 40.285 76.3602 12.3716 90.376 6.84214C110.335 -1.03806 149.47 -2.67916 169.71 4.92014C176.363 7.41874 184.998 14.2788 191.503 15.639C200.595 17.5462 215.173 9.90256 217.021 24.2289C218.485 35.5982 209.599 33.691 202.991 38.1264C200.891 39.531 187.26 54.3895 188.96 55.868L188.975 55.8975ZM132.778 66.2616H102.47C99.9269 66.2616 86.3694 62.9202 83.1759 61.841C80.6477 60.9834 77.1142 61.1609 78.0752 57.3908C96.4673 62.181 117.491 65.1379 136.534 63.3638C143.719 62.6985 151.806 59.4458 159.051 57.79C163.944 56.6663 171.514 57.1247 176.038 55.5575C180.814 53.9164 192.863 37.0619 198.555 32.2421C202.429 28.9599 209.673 29.5661 203.064 22.2625C193.321 27.2449 185.944 19.8674 178.611 18.182C159.76 13.8353 130.901 14.5154 111.769 17.901C102.278 19.5865 92.9781 23.0017 84.0039 26.3283C81.387 23.8888 91.9432 20.0892 92.8894 19.69C117.092 9.56251 145.759 9.93213 171.218 14.4858L158.001 9.23725C141.531 6.07334 107.334 7.72922 91.8545 14.2345C81.5348 18.5811 49.4078 42.207 63.3497 53.6207C78.3857 65.9363 104.007 72.7372 123.213 70.7117C125.741 70.4456 131.758 68.9967 132.778 66.232V66.2616ZM109.123 109.137C117.417 114.252 133.932 125.223 142.773 126.494C162.392 129.318 196.84 126.169 213.961 115.657C218.411 112.922 238.518 94.5889 240.78 90.7449C243.16 86.6791 243.16 83.2195 239.139 80.3957C236.522 78.5624 221.353 71.0518 217.613 69.3959C191.828 58.0117 145.316 62.5802 123.893 81.7706C115.924 88.9116 109.966 101.582 97.2805 101.759C97.2213 112.286 101.864 108.398 109.123 109.137C108.783 108.93 104.717 106.698 106.905 106.18C145.863 107.732 183.726 110.675 221.471 98.8025C222.255 103.223 220.289 101.138 218.012 101.907C179.232 115.036 149.145 113.218 109.123 109.152V109.137Z' fill='currentColor'/%3E %3Cpath d='M8.18929 54.6745C16.9418 52.8264 18.7899 61.8894 24.9846 66.8422C30.9428 71.6029 38.0247 73.0961 44.5151 76.881C81.3436 98.3335 101.392 159.675 86.2373 199.327C78.8155 218.739 52.2179 203.482 40.6415 196.075C13.8518 178.954 -1.18416 131.466 1.21095 100.995C1.78755 93.7355 4.89232 88.6643 4.22701 80.2075C3.5617 71.7507 -7.08323 57.8975 8.18929 54.6745ZM81.0331 161.612C81.8019 168.856 80.4713 177.15 81.0331 184.528L83.9753 173.425C86.0599 149.252 75.4741 122.196 61.547 102.754C50.8577 87.8364 40.7303 84.022 25.2951 75.4321C23.9941 74.7077 21.5842 72.1795 20.431 74.3824C40.5824 94.3121 59.8616 121.368 69.235 148.291C71.4379 154.619 76.5978 170.512 76.5978 176.411V199.327C74.4244 199.416 74.3505 194.005 74.0696 192.245C64.7996 132.959 49.8819 123.881 20.2388 77.3837C18.9969 75.4173 20.1648 73.3031 19.0264 71.4107C17.7845 69.326 13.8814 67.0492 12.2698 64.8167L9.01723 68.4685C11.7376 72.1499 11.0427 77.1028 12.5508 80.7398C16.6461 90.6455 16.7792 95.554 19.396 106.45C24.3932 127.237 32.7022 148.246 43.3028 166.816C45.9936 171.517 53.0311 178.984 54.406 182.34C54.6869 183.02 54.7904 184.764 53.6964 184.528C28.0746 157.546 16.6905 120.289 12.2994 83.9776C8.13015 99.8563 13.3787 115.809 18.5533 130.963C24.8368 149.37 33.5745 167.008 45.5796 182.295C44.0864 184.75 42.3122 181.822 41.1294 180.832C24.5854 167.156 13.6892 129.943 10.0669 109.126C7.47963 109.126 8.42584 115.602 8.54412 117.302C10.1409 140.307 25.8865 178.318 46.0527 190.678C51.937 194.286 73.3156 206.616 78.2389 200.185C82.0385 188.268 79.7764 172.937 77.677 160.532C73.2121 134.201 61.6061 110.013 44.0864 89.9062C47.5608 86.5354 62.7298 111.137 64.0752 113.517C71.1127 126.069 79.5399 147.418 81.0479 161.597L81.0331 161.612Z' fill='currentColor'/%3E %3Cpath d='M307.578 38.4996C310.757 35.2766 319.48 35.9566 322.096 40.2738C325.541 45.9363 321.49 50.1795 322.289 56.2264C323.087 62.2733 328.528 68.9559 330.553 74.7072C341.997 107.248 319.509 163.282 290.472 181.807C283.789 186.08 267.038 195.882 259.824 194.256C249.578 191.934 242.851 167.629 241.358 157.974C237.085 130.445 257.236 85.5295 278.423 67.7436C284.647 62.5246 297.199 57.01 301.93 51.3327C304.902 47.7696 305.789 40.2738 307.563 38.4848L307.578 38.4996ZM256.97 181.57V157.176C256.97 152.341 262.16 135.797 263.978 130.179C271.991 105.444 286.436 78.5068 304.281 59.5973C302.699 57.1134 301.043 60.2034 299.875 61.1053C283.05 74.0271 272.893 81.242 262.633 100.743C247.345 129.795 243.634 150.419 256.231 181.585C256.941 183.33 257.399 185.104 259.439 185.799C268.842 188.904 294.76 170.645 301.368 163.149C313.521 149.37 326.576 113.369 326.547 95.1099C326.517 77.3536 313.58 66.1616 316.094 48.5236C306.913 46.0398 308.258 57.0543 306.144 61.3566C301.93 69.9465 290.783 81.3455 285.342 90.9555C273.455 111.92 262.455 142.14 259.942 166.091C259.484 170.408 260.459 175.228 259.927 179.397C259.646 181.57 258.774 183.995 256.97 181.585V181.57Z' fill='currentColor'/%3E %3Cpath d='M100.858 264.964C95.417 268.527 91.2773 275.003 83.9885 266.177C76.6997 257.35 86.5462 253.107 88.069 244.044C90.4346 230.117 87.0933 221.793 93.6133 206.713C105.441 179.376 136.104 151.803 165.245 145.283C178.654 142.282 195.849 137.181 200.713 154.301C199.087 164.399 200.284 175.059 199.146 185.098C196.307 210.084 157.305 246.986 133.931 254.423C120.507 258.696 113.853 256.478 100.858 264.964ZM95.8162 248.095C95.0622 249.707 91.2477 254.068 91.5582 256.02C95.4466 263.915 101.508 254.704 108.073 252.22C123.035 246.543 129.732 244.236 142.994 233.917C158.947 221.527 177.856 202.899 183.06 183.028L185.766 184.994C180.503 209.345 150.371 235.454 128.342 245.153C127.973 247.77 131.728 246.661 133.162 246.277C152.264 241.22 186.283 208.029 190.645 188.424C192.108 181.845 194.696 160.23 193.069 154.508C190.807 146.599 174.737 149.585 169.222 151.936C167.507 152.66 168.808 155.248 167.329 156.519C164.786 158.722 154.068 162.921 150.061 165.567C130.678 178.386 112.257 198.522 103.179 219.975C99.0984 217.949 104.48 209.788 105.914 207.171C117.579 185.896 143.497 161.989 166.768 154.908C166.812 151.921 160.839 153.695 159.301 154.109C139.431 159.343 115.864 183.56 105.544 200.888C96.7624 215.628 94.4708 230.96 95.8162 248.08C114.622 207.644 141.249 166.514 186.002 151.995C176.644 160.038 165.496 165.094 155.738 172.723C138.573 186.118 123.049 206.107 111.458 224.543C109.891 227.042 97.0581 252.205 95.831 251.037C95.7423 250.062 95.8901 249.056 95.831 248.08L95.8162 248.095Z' fill='currentColor'/%3E %3Cpath d='M246.295 201.208C263.504 199.33 273.232 208.142 285.799 208.171C291.151 208.171 298.248 203.44 301.722 203.958C308.39 204.963 313.979 216.318 309.44 221.433C307.252 223.917 301.293 224.109 296.888 229.609C285.592 243.728 285.533 255.97 268.028 270.237C238.4 294.366 203.242 301.935 166.739 290.27C146.824 283.913 162.229 258.927 169.489 247.099C182.765 225.484 221.353 203.913 246.295 201.193V201.208ZM172.712 279.167C192.493 276.24 212.615 272.499 230.889 264.161C252.992 254.078 270.556 236.321 291.003 224.996C293.561 223.577 296.71 219.452 299.756 217.826L296.178 212.784C282.827 221.566 266.964 208.29 253.273 208.216C231.747 208.083 189.936 229.742 177.99 248.238C175.609 251.934 164.595 272.78 164.092 275.811C163.663 278.443 164.58 281.444 167.123 282.597C170.656 284.194 190.764 287.698 195.539 288.082C221.634 290.152 254.485 274.702 271.739 255.512L250.05 270.03C236.271 276.742 222.196 280.719 207.071 283.262C204.218 283.75 205.297 283.218 205.208 280.646C230.933 277.038 253.776 265.417 273.971 249.583L276.16 252.525L288.756 225.928C261.316 254.861 224.753 278.103 183.844 280.69C181.494 280.838 173.717 281.799 172.697 279.167H172.712Z' fill='currentColor'/%3E %3Cpath d='M236.271 83.9741C192.509 74.645 150.284 79.6274 110.617 100.252C109.73 96.7775 113.721 96.1418 116.087 94.6781C146.721 75.7834 197.166 69.1303 231.303 80.8397C233.24 81.505 235.813 81.2537 236.286 83.9741H236.271Z' fill='currentColor'/%3E %3Cpath d='M236.271 86.9728L131.314 100.249C132.216 97.056 136.105 97.2482 138.692 96.5533C169.104 88.3035 204.883 86.7511 236.285 86.9728H236.271Z' fill='currentColor'/%3E %3Cpath d='M220.007 104.703C216.843 109.981 208.106 112.465 202.281 114.313C181.065 121.04 146.528 127.398 126.864 115.762C132.941 113.899 139.283 117.462 145.36 117.965C169.163 119.902 197.771 112.909 219.993 104.703H220.007Z' fill='currentColor'/%3E %3Cpath d='M212.615 73.6274C186.668 68.6154 159.287 69.2363 134.257 78.0627C137.583 73.6717 146.632 71.247 152.013 69.9608C168.542 65.9985 188.738 65.7176 205.282 69.9016C207.855 70.5522 211.743 70.5374 212.63 73.6274H212.615Z' fill='currentColor'/%3E %3Cpath d='M196.352 30.7891C183.933 40.059 167.419 47.0226 152.324 51.0588C122.119 59.1016 91.6773 60.1957 61.8271 49.9795C62.6994 46.8304 63.7048 47.7175 65.9225 47.9836C74.675 49.0185 84.5659 52.3007 93.6289 52.9364C112.967 54.2818 132.187 51.3249 150.845 46.6234C166.591 42.6611 181.154 36.1263 196.352 30.7891Z' fill='currentColor'/%3E %3Cpath d='M186.006 23.3927C186.449 25.3591 183.61 25.5809 182.339 25.5957C175.198 25.6696 166.948 23.4962 160.206 23.3188C129.647 22.5205 102.295 26.1279 73.6572 36.6693C74.0416 34.1116 76.6585 34.156 78.4179 33.3132C112.112 17.1684 149.798 15.8526 186.02 23.3927H186.006Z' fill='currentColor'/%3E %3Cpath d='M174.175 29.3047C172.667 32.7643 166.325 32.9713 162.895 33.5331C143.29 36.7709 117.402 41.2507 98.0196 42.5813C87.5965 43.2909 76.715 42.1082 66.2623 42.5813C65.9961 40.4227 70.1358 39.9348 71.5552 39.7722C78.3265 39.033 85.3492 40.2157 92.1058 39.6244C119.576 37.244 146.498 29.9848 174.175 29.3047Z' fill='currentColor'/%3E %3Cpath d='M24.8365 94.3438L69.2052 194.864C65.7308 195.678 64.4741 190.843 63.0548 188.477C45.9194 159.721 34.964 125.835 21.9092 95.0682L24.8218 94.3585L24.8365 94.3438Z' fill='currentColor'/%3E %3Cpath d='M314.631 58.8541C314.35 93.598 308.466 131.18 287.782 159.877C286.363 161.844 275.57 176.274 273.249 174.159C290.296 152.145 301.502 129.569 306.781 101.996C309.368 88.4677 309.989 74.6884 311.704 61.057C311.955 59.0315 312.754 56.3555 314.646 58.8541H314.631Z' fill='currentColor'/%3E %3Cpath d='M265.826 183.026C262.869 183.219 264.644 178.576 265.087 177.098C269.552 162.298 279.177 145.429 284.692 130.171C290.118 115.18 293.533 96.6694 299.447 82.831C300.23 81.0124 300.245 78.4695 302.803 78.0703C297.185 115.254 281.469 149.347 265.841 183.026H265.826Z' fill='currentColor'/%3E %3Cpath d='M322.023 86.9512C325.305 91.2979 311.984 132.65 308.998 139.703C304.178 151.043 295.943 165.931 283.598 169.73C303.882 150.658 314.231 123.454 318.903 96.3838C319.51 92.8355 317.07 85.6945 322.038 86.9512H322.023Z' fill='currentColor'/%3E %3Cpath d='M255.491 162.339C252.993 162.28 252.342 163.344 252.86 160.476C254.131 153.542 253.303 148.589 254.042 142.409C256.718 119.981 270.586 92.2891 285.046 75.1094C281.202 84.8229 274.889 93.1614 270.483 102.668C261.834 121.356 255.905 141.566 255.476 162.324L255.491 162.339Z' fill='currentColor'/%3E %3Cpath d='M106.166 249.561C126.628 235.545 147.696 222.283 163.796 202.974C171.662 193.542 177.058 181.078 185.988 172.695C170.568 206.73 141.782 237.186 106.166 249.561Z' fill='currentColor'/%3E %3Cpath d='M113.573 236.271L187.467 159.391C188.117 162.155 185.929 162.909 184.525 164.565C171.958 179.453 155.251 197.964 141.679 211.906C139.387 214.271 114.889 237.572 113.559 236.256L113.573 236.271Z' fill='currentColor'/%3E %3Cpath d='M288.018 217.07C287.707 219.436 282.621 220.16 280.625 220.752C250.982 229.534 229.589 232.343 201.276 247.852C193.573 252.066 186.743 258.009 178.611 261.395C207.914 233.866 248.262 220.116 288.003 217.07H288.018Z' fill='currentColor'/%3E %3Cpath d='M265.839 231.859C251.04 243.377 232.293 252.632 215.084 260.187C200.802 266.47 184.834 272.724 169.739 276.184L265.825 231.859H265.839Z' fill='currentColor'/%3E %3Cpath d='M267.319 214.112C269.493 216.167 267.186 216.803 265.131 217.054C260.563 217.631 255.684 216.699 250.701 217.438C226.957 220.942 196.989 240.517 178.626 255.494C176.098 252.848 193.278 240.31 195.289 238.906C213.71 226.058 244.714 209.322 267.319 214.112Z' fill='currentColor'/%3E %3C/svg%3E"); }
.ico--zazvor            { --m: url("data:image/svg+xml,%3Csvg width='430' height='364' viewBox='0 0 430 364' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M143.932 150.596C160.364 143.443 165.858 125.291 176.813 112.613C182.943 105.52 195.371 98.0276 199.275 90.5592C207.015 75.7222 200.358 57.5813 215.567 45.1494C220.71 40.9438 238.839 36.3406 245.826 35.268C268.044 31.861 275.713 54.637 265.493 71.4812C285.845 65.9902 314.917 64.757 327.497 85.3676C336.07 99.4089 329.986 105.89 326.612 118.702C322.631 133.786 325.855 138.027 312.042 148.981C278.091 175.916 251.009 154.448 218.579 169.041C217.464 169.54 210.24 172.33 212.826 174.403C228.04 181.119 243.056 174.623 258.355 174.604C274.879 174.588 289.514 181.711 305.228 173.776C313.078 169.807 319.002 161.267 326.801 156.459C337.445 149.894 353.969 145.977 366.057 150.018C371.956 151.988 396.633 172.826 401.086 178.111C410.967 189.841 405.553 204.551 398.173 215.971C388.095 231.577 375.262 233.574 357.549 232.454L366.798 243.331C369.639 248.916 369.225 258.319 366.392 263.769C365.03 266.393 359.401 269.622 356.916 272.792C354.225 276.224 353.066 280.592 349.974 283.768C383.351 310.037 363.891 338.175 325.473 334.558C296.934 331.884 296.142 308.945 278.091 295.133C270.65 289.439 260.315 286.422 252.469 280.991C266.494 299.067 274.122 311.78 254.838 330.102C232.201 351.605 200.889 328.259 195.781 302.376C192.587 286.177 197.928 265.571 185.079 251.898C177.097 243.41 157.961 239.304 146.657 241.481C159.076 256.342 181.625 269.997 167.664 291.601C159.469 304.29 141.426 304.066 128.365 300.203C113.042 295.672 112.448 275.01 99.9044 271.658C87.3031 268.283 78.9968 281.61 67.4401 282.542C41.8542 284.593 16.7826 254.868 13.3778 231.288C9.14183 201.965 40.1051 199.687 59.3253 188.475C73.4464 180.225 87.4137 162.845 91.2315 146.779C93.2614 138.265 90.1221 129.779 92.0632 121.064C98.0296 94.3134 142.031 83.8194 146.699 115.423C147.08 117.991 147.93 127.675 147.603 129.55L143.934 150.584L143.932 150.596ZM395.63 205.632C398.131 198.748 400.413 192.409 396.725 185.363C386.242 178.011 372.356 159.067 360.039 156.547C349.348 154.361 334.632 158.568 326.939 166.391C339.464 169.418 348.54 181.008 354.727 191.686C355.622 193.229 357.306 194.154 356.385 196.31C347.493 187.86 337.844 172.319 324.3 170.798C319.939 170.31 314.793 177.017 310.419 179.66C303.773 183.678 296.629 185.441 288.888 185.8C303.717 214.246 294.427 246.065 271.62 266.981C270.363 266.018 271.83 263.289 272.438 262.145C280.15 247.612 288.887 241.259 291.166 222.658C292.057 215.42 289.974 191.005 283.742 186.76C281.141 184.981 263.441 182.228 259.33 182.007C246.294 181.269 231 188.645 217.289 184.458C218.692 194.524 213.156 207.231 203.859 211.827C208.964 203.007 212.891 195.122 213.608 184.621C213.513 183.106 192.469 175.732 210.928 164.127C220.664 158.01 229.263 163.312 221.665 148.153C218.796 142.451 213.38 137.927 211.685 131.452C221.106 136.661 226.895 146.997 230.306 156.906C239.164 156.395 247.952 154.224 256.778 156.594C264.159 139.056 256.327 118.419 244.139 104.936C240.236 100.614 235.905 98.2488 231.688 94.6647C230.297 93.4808 228.622 94.3528 229.84 91.2709C253.172 100.579 272.42 131.53 261.847 156.289C274.591 157.781 280.935 158.404 286.795 146.038C292.889 133.181 295.77 118.722 292.496 104.689C291.385 99.9126 288.54 96.1964 288.008 91.5087C305.213 108.604 297.451 136.775 284.518 154.051C293.924 152.88 315.208 139.848 317.175 130.63C317.813 127.608 316.812 124.263 317.463 120.809C318.209 116.89 320.749 113.828 321.741 110.273C328.193 87.2724 313.077 76.7963 291.919 76.1153C298.99 84.569 305.066 97.0972 303.61 108.497C303.284 111.004 303.715 112.083 300.71 111.063C300.523 99.7107 295.753 82.964 285.186 77.0835C280.388 74.4137 260.184 84.9465 253.198 77.9938L259.132 64.3527C250.618 57.0715 240.422 60.2842 230.483 59.1823C230.204 56.0993 233.931 56.3159 236.04 55.8664C246.419 53.664 252.445 54.6903 261.148 60.8155C263.968 50.4706 260.466 42.9985 249.086 42.9208C245.275 42.9001 230.312 46.7428 226.551 48.3533C221.774 50.3933 218.021 53.3798 215.16 57.7109L216.044 60.3793C219.987 60.2125 224.616 59.7319 228.491 60.098C229.832 60.2205 233.117 59.9885 232.458 61.9914C226.099 62.8019 220.128 65.9342 213.588 63.6664L211.28 76.8996C228.278 76.8673 251.148 85.773 254.801 104.306C248.145 98.5878 244.138 91.7337 236.142 87.379C227.682 82.77 219.689 82.6516 210.885 79.3077L204.736 96.8124L188.973 112.628C192.351 110.443 213.387 122.051 209.128 124.813C203.488 121.575 190.657 115.609 184.412 117.406C177.382 119.437 165.736 149.99 154.679 153.102C167.383 164.904 179.906 179.238 174.062 197.973C170.519 191.732 172.739 184.539 169.531 177.441C167.159 172.222 157.384 160.596 152.544 157.671C147.972 154.917 138.82 166.275 132.033 162.156C132.136 155.103 138.837 150.698 137.206 143.218C135.584 138.885 123.116 138.791 118.994 137.577C120.482 129.898 137.796 139.197 138.632 138.525C142.07 119.309 138.49 93.9644 112.605 106.751C96.9127 114.492 99.7798 128.231 99.4972 142.846C106.323 142.909 114.808 141.194 121.481 141.85C123.307 142.032 124.994 141.447 124.05 144.02L99.6763 148.351L88.2585 171.848C95.9237 173.061 103.024 176.516 109.444 180.683C111.669 182.124 126.598 193.174 122.362 196.373L106.665 183.69C102.491 181.352 90.0292 175.897 85.7596 176.589C83.7071 176.924 78.171 184.38 75.779 186.378C62.9554 197.059 48.497 201.349 34.607 209.552C49.3154 211.994 52.7438 224.717 59.9355 234.467C68.2093 245.682 80.226 253.97 76.682 270.171L89.1873 264.723C93.4674 248.279 91.3416 226.668 75.3393 217.301L76.5047 214.383C95.2475 221.529 97.1137 246.191 94.5872 263.374C102.889 260.438 107.81 268.652 115.143 269.498C121.189 270.194 127.366 266.379 133.454 267.688C129.185 272.851 121.845 272.896 116.063 275.157C122.057 287.089 126.074 293.524 140.367 294.729C163.973 296.716 172.333 274.916 153.801 261.305C151.128 264.913 139.678 278.298 135.029 276.62C133.211 275.969 133.622 274.889 134.919 273.492C139.594 268.487 149.089 264.607 149.838 255.697C142.754 243.909 131.675 246.076 119.997 245.501C120.032 244.38 120.132 243.951 120.986 243.171C122.028 242.238 144.822 234.609 147.311 234.115C153.761 232.85 160.024 233.583 166.389 235.003C170.06 226.453 169.089 217.54 171.024 208.577C172.757 208.582 172.294 210.879 172.543 212.223C173.961 219.851 173.936 228.801 170.009 235.622C177.471 237.505 184.768 240.76 190.392 246.075C195.08 250.509 192.963 254.128 201.841 254.71C207.105 255.059 230.089 246.695 234.302 243.417C244.945 235.155 239.848 225.894 242.627 216.706C243.118 215.095 244.176 213.15 245.371 215.315C244.905 222.107 246.637 227.512 244.556 234.406C240.668 247.252 212.308 260.45 199.317 259.311L202.46 281.05C211.071 285.648 220.281 289.013 230.187 288.239C226.078 292.34 216.101 291.108 210.876 289.676C208.312 288.969 202.375 284.094 202.039 287.441C201.562 292.163 203.986 307.807 206.917 311.452C211.73 317.443 218.99 314.09 225.365 315.883C225.383 319.404 224.192 317.71 222.25 318.126C219.419 318.735 216.369 318.612 213.619 319.395C220.666 329.48 236.811 334.191 247.101 326.536C252.281 322.683 261.474 310.874 257.77 304.209C245.952 310.26 232.195 311.452 219.216 308.606C219.228 306.837 221.593 307.336 222.912 307.157C229.556 306.273 236.504 307.051 243.152 305.932C265.138 302.224 251.729 296.096 245.523 285.378C243.193 281.343 236.04 267.252 245.396 268.5L282.763 288.653C297.655 288.551 302.298 276.134 311.079 269.033C313.691 266.912 317.377 265.871 320.562 263.021C332.82 252.105 332.481 236.577 332.43 221.323C333.451 218.949 337.747 220.231 339.814 220.666L335.789 222.441C336.678 237.012 337.695 252.485 326.153 263.488C321.964 267.476 315.392 269.302 311.6 272.79C308.357 275.766 306.204 280.865 302.729 284.172C298.48 288.224 292.892 290.37 287.645 292.688C292.681 298.892 301.128 314.868 308.954 316.79C320.462 319.615 331.202 311.369 341.754 308.95C333.795 315.958 322.022 322.599 311.187 320.957C310.605 322.664 313.015 322.973 314.19 323.549C323.865 328.296 353.54 328.22 357.79 315.995C358.512 313.916 360.405 303.558 356.149 304.599L346.788 308.564C345.344 306.405 355.753 302.61 354.156 298.703C351.014 291.083 335.347 288.239 328.088 287.964C329.435 281.449 338.665 284.273 342.164 281.75C344.247 280.243 346.485 274.02 348.511 271.277C355.423 261.968 366.108 258.085 358.542 244.937C353.969 237.006 341.461 233.945 339.339 223.816C341.068 218.804 358.537 224.378 363.256 224.73C377.188 225.798 379.529 221.042 380.394 207.42C381.988 182.235 368.023 179.576 355.911 164.522C354.75 163.081 353.263 162.165 354.126 159.987C377.16 168.661 391.132 198.543 380.542 221.553C391.882 219.592 390.776 203.992 391.383 194.971L395.694 205.618L395.63 205.632ZM23.9259 215.405C10.4963 235.17 44.3355 277.397 64.3566 275.155C71.5196 274.348 71.218 263.793 69.448 258.32C67.9915 253.818 53.4419 232.43 49.8381 227.814C44.013 220.383 33.8038 211.53 23.9379 215.407L23.9259 215.405Z' fill='currentColor'/%3E %3Cpath d='M130.717 226.306L127.239 224.869C125.756 210.653 108.748 197.89 97.6819 189.903C96.1977 188.827 94.2424 190.096 95.5214 186.74C106.538 188.835 127.017 207.541 129.927 217.907C130.683 220.603 131.293 223.496 130.717 226.306Z' fill='currentColor'/%3E %3Cpath d='M165.42 226.16C162.168 226.2 163.423 225.18 162.892 223.254C159.579 211.22 163.183 198.436 163.725 186.245C166.846 185.675 167.08 192.143 167.043 193.92C166.868 204.367 164.672 215.465 165.408 226.158L165.42 226.16Z' fill='currentColor'/%3E %3Cpath d='M51.0351 207.451L81.7234 187.365L86.8931 186.484C77.151 195.757 64.9502 205.779 51.045 207.465L51.0351 207.451Z' fill='currentColor'/%3E %3Cpath d='M216.152 148.324C214.088 149.648 202.657 134.378 199.586 132.034C196.734 129.852 193.435 128.67 190.438 126.822C188.739 125.77 187.072 126.953 188.278 123.659C197.214 124.4 204.02 130.046 209.558 136.634C210.604 137.882 217.726 147.323 216.164 148.326L216.152 148.324Z' fill='currentColor'/%3E %3Cpath d='M269.564 275.293C280.132 268.454 285.021 256.686 294.022 248.609C289.89 259.728 282.56 273.708 269.564 275.293Z' fill='currentColor'/%3E %3Cpath d='M127.771 122.394C127.539 123.729 114.796 123.933 112.266 124.309C109.571 124.706 107.674 125.924 105.405 126.581C103.539 127.122 104.065 128.155 102.503 125.393C102.428 120.005 124.74 115.847 127.771 122.394Z' fill='currentColor'/%3E %3Cpath d='M284.977 222.267C282.855 221.513 283.376 219.449 283.122 217.782C281.989 210.289 282.005 201.957 281.186 194.371C284.408 191.948 286.507 206.681 286.608 207.949C286.991 212.71 287.326 218.032 284.965 222.265L284.977 222.267Z' fill='currentColor'/%3E %3Cpath d='M275.393 192.092L249.746 190.095C249.71 186.894 250.67 188.064 252.641 187.554C258.765 185.959 267.822 185.941 273.572 188.69C275.606 189.664 276.316 189.503 275.393 192.092Z' fill='currentColor'/%3E %3Cpath d='M335.827 186.519C336.046 184.551 335.708 183.724 338.007 184.46C345.014 186.673 351.596 198.93 353.52 205.718L335.827 186.519Z' fill='currentColor'/%3E %3Cpath d='M135.662 290.335L156.765 282.882C154.649 291.108 142.652 292.508 135.662 290.335Z' fill='currentColor'/%3E %3Cpath d='M201.746 252.324L215.795 243.07L222.067 242.257C216.592 247.73 209.462 251.329 201.746 252.324Z' fill='currentColor'/%3E %3Cpath d='M186.589 239.758C187.98 238.526 196.233 228.138 198.087 230.641C195.43 234.513 192.348 241.319 186.589 239.758Z' fill='currentColor'/%3E %3Cpath d='M310.415 310.91C310.415 307.219 311.696 309.177 313.668 308.877C320.118 307.896 326.396 307.406 332.499 304.866C328.726 312.011 317.498 312.48 310.403 310.908L310.415 310.91Z' fill='currentColor'/%3E %3Cpath d='M52.7856 239.961C45.6906 236.543 41.9623 226.889 33.718 225.588C24.7265 224.168 30.942 233.835 28.9408 238.279C15.0135 210.696 50.0151 223.253 52.7856 239.961Z' fill='currentColor'/%3E %3Cpath d='M39.2659 253.718C42.0869 257.071 59.5785 269.757 62.1456 264.483C63.1432 262.527 61.4939 261.261 61.1125 259.968C59.2049 253.579 68.199 261.588 65.2433 267.314C61.2781 274.995 38.5206 262.108 39.28 253.708L39.2659 253.718Z' fill='currentColor'/%3E %3C/svg%3E"); }
.ico--badyan            { --m: url("data:image/svg+xml,%3Csvg width='317' height='313' viewBox='0 0 317 313' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M182.449 98.498L194.669 81.9111C206.876 67.9006 226.26 56.6014 243.448 49.7189C248.723 47.6087 268.426 39.2171 270.561 46.6272C273.444 56.6505 248.785 107.344 237.657 115.073L213.108 132.837C243.411 124.642 270.635 129.844 298.582 142.456C311.955 148.479 325.793 152.037 307.587 162.932C279.91 179.494 245.889 187.137 214.323 178.255C222.052 184.499 231.278 189.444 238.307 196.584C250.907 209.392 267.506 240.063 270.463 257.668C272.634 270.611 264.918 266.624 256.33 264.44C235.338 259.116 210.421 246.529 195.883 230.42L182.437 212.606C189.663 243.118 183.946 270.157 169.801 297.516C157.434 321.452 155.557 314.262 145.791 294.019C132.713 266.906 128.149 242.725 134.566 212.619L112.507 239.008C99.7481 250.234 71.5186 264.269 54.8826 267.287C38.627 270.231 50.969 245.449 54.2569 237.192C61.7161 218.471 71.3959 203.16 86.7191 189.91L103.907 178.279C73.9477 186.217 47.6688 182.168 20.0526 169.508C0.656292 160.613 -10.7656 157.055 14.765 144.934C32.775 136.383 56.2935 128.568 76.3768 129.157C84.5967 129.39 93.2459 132.531 101.466 132.874L84.8788 120.655C69.4452 107.393 57.7411 87.6773 51.153 68.5018C49.4722 63.619 42.1726 45.8666 49.3496 44.5293C57.6307 42.9835 89.9089 58.1963 98.1655 63.1896C114.09 72.808 124.064 84.7206 134.578 99.7617C127.168 71.1149 132.382 45.793 144.577 19.5754C147.399 13.5148 154.453 -5.8079 162.096 1.71263C167.985 7.50331 180.904 40.6771 182.854 49.6453C186.437 66.1217 185.014 82.0338 182.449 98.5226V98.498ZM159.115 10.1778C156.428 11.5642 155.226 15.3306 154.011 17.9437C136.664 55.0065 136.455 97.3325 154.833 134.101C157.005 138.456 159.164 139.916 161.667 134.788C171.322 114.999 178.192 82.9172 174.953 61.2266C172.377 43.9895 164.538 26.6543 159.115 10.1901V10.1778ZM262.169 50.6513C219.193 67.1645 188.792 92.9036 172.046 136.567C168.942 144.652 171.212 145.314 178.744 142.039C186.13 138.837 198.288 132.322 205.342 128.151C235.191 110.521 250.981 82.6104 262.169 50.6513ZM54.8581 53.1172C64.8077 85.3831 81.6891 111.527 111.256 128.592C117.341 132.101 134.823 141.658 140.688 143.339C142.381 143.83 144 144.505 145.669 143.314C147.718 141.805 146.478 140.996 145.902 139.34C141.902 127.66 127.88 103.81 119.832 94.2409C102.926 74.133 78.2171 63.6803 54.8581 53.1172ZM306.348 153.73C283.553 146.063 260.391 136.395 235.756 137.72C222.076 138.456 191.651 146.382 179.296 152.418C177.824 153.141 176.058 153.301 176.278 155.571C176.058 157.828 177.824 158 179.296 158.724C189.774 163.839 216.85 171.188 228.468 172.121C251.582 173.985 281.762 166.772 302.68 156.81C303.6 156.368 307.084 154.687 306.36 153.755L306.348 153.73ZM140.725 153.73C122.199 147.915 103.343 140.125 83.6643 138.996C58.3055 137.548 33.7319 146.296 10.6918 155.546C43.5098 173.887 76.9535 177.641 113.145 167.226C116.813 166.171 137.915 159.251 139.473 157.975C141.117 156.626 140.835 155.632 140.725 153.718V153.73ZM155.091 142.934C136.983 147.081 148.564 178.157 165.875 165.974C176.254 158.675 169.089 139.72 155.091 142.934ZM54.8581 259.214C81.959 250.516 108.925 235.033 125.279 211.257C131.352 202.424 141.51 184.426 144.994 174.513C146.025 171.569 147.669 166.305 141.951 167.692C137.768 168.71 119.77 178.525 114.936 181.285C83.3576 199.369 67.5313 225.905 54.8458 259.202L54.8581 259.214ZM262.182 257.987C251.987 228.347 236.308 202.043 209.329 185.101C203.06 181.162 181.235 169.189 175.064 167.716C172.487 167.091 171.273 167.949 168.942 168.452C176.72 185.653 184.744 203.687 197.196 218.09C214.016 237.548 238.577 249.289 262.182 257.987ZM157.925 302.153C159.311 303.184 164.022 291.37 164.636 289.873C176.168 261.987 179.91 236.162 171.727 206.754C169.862 200.08 164.292 182.058 161.299 176.697C160.538 175.347 159.139 172.918 157.311 173.348C148.172 193.505 139.755 217.698 140.676 240.272C141.547 261.606 150.834 282.438 157.925 302.166V302.153Z' fill='currentColor'/%3E %3Cpath d='M221.279 199.529C224.419 202.694 229.449 209.454 231.192 213.539C233.437 218.802 233.105 225.133 234.614 228.519C237.007 233.905 251.471 241.45 252.379 249.387C246.809 246.664 235.731 232.249 231.523 230.396C228.922 229.243 224.665 229.697 221.046 228.605C198.349 221.734 187.087 193.848 177.566 174.562C191.97 181.666 209.845 187.947 221.303 199.516L221.279 199.529ZM188.583 185.616C192.043 195.689 198.57 206.534 206.336 213.858C215.145 222.176 237.473 234.714 224.358 211.785C216.899 198.731 202.201 190.781 188.583 185.616Z' fill='currentColor'/%3E %3Cpath d='M156.676 26.7342C156.749 26.2312 157.878 23.2254 159.117 23.6793L160.381 51.2464C179.409 74.127 168.343 100.897 159.706 125.483C159.289 126.66 159.559 128.304 157.915 127.936C149.855 106.197 137.046 76.1758 153.167 55.0619C154.602 53.1848 156.676 53.3075 156.676 53.0989C156.676 45.2962 155.67 33.9602 156.676 26.7219V26.7342ZM160.295 58.0676C153.952 53.8105 150.566 76.8751 150.48 80.6906C150.198 92.321 154.651 103.571 157.927 114.453L165.313 88.1252C164.969 82.9112 165.754 77.4395 165.129 72.2745C164.883 70.2379 161.043 58.5707 160.295 58.0676Z' fill='currentColor'/%3E %3Cpath d='M160.353 288.664C158.893 290.59 158.108 288.701 157.887 286.848C157.139 280.506 157.887 266.139 156.415 261.306C155.826 259.367 153.078 257.981 151.949 255.957C139.325 233.039 148.035 209.987 156.721 187.511C157.212 186.235 157.224 184.555 159.102 184.383C167.125 208.22 178.633 232.512 164.561 256.68C163.825 257.956 160.341 260.692 160.341 261.048V288.652L160.353 288.664ZM157.924 197.89C152.145 216.011 145.005 239.321 158.525 255.515C169.223 243.332 166.598 224.12 162.745 209.607L157.924 197.89Z' fill='currentColor'/%3E %3Cpath d='M177.53 136.521C189.344 112.83 197.184 90.4773 224.076 80.638C226.346 79.8037 229.106 80.4908 231.474 79.448C235.817 77.5341 246.245 63.0083 252.343 60.4688C250.502 68.8971 238.676 74.283 235.326 80.8588C233.327 84.7847 233.94 89.8516 232.087 94.7957C224.604 114.842 195.626 128.301 177.518 136.521H177.53ZM188.571 125.479C203.22 120.179 221.782 107.678 227.56 92.7101C231.253 83.153 225.843 84.3063 218.825 87.6555C205.269 94.1087 193.773 111.873 188.571 125.479Z' fill='currentColor'/%3E %3Cpath d='M291.625 153.703C293.6 155.2 291.625 155.936 289.809 156.157C282.166 157.114 271.689 157.445 264.168 156.439C242.785 177.467 210.555 163.64 186.129 156.132C185.786 155.801 186.779 154.599 187.344 154.292C190.3 152.672 207.01 147.593 211.353 146.403C228.381 141.729 242.907 140.159 258.918 148.992C260.512 149.875 263.678 153.691 264.033 153.691H291.637L291.625 153.703ZM257.212 152.55C240.086 144.305 220.162 147.753 202.974 154.01C201.685 154.476 199.33 154.439 199.624 156.144C213.524 159.162 226.075 163.738 240.699 162.279C244.257 161.923 260.942 158.034 257.212 152.55Z' fill='currentColor'/%3E %3Cpath d='M138.271 175.805C129.831 196.735 116.667 223.897 93.2096 230.718C90.805 231.417 88.0814 230.522 85.5418 231.638C83.8611 232.387 66.0596 252.09 64.6855 250.63C66.0719 246.986 70.01 242.508 72.6355 239.576C74.672 237.294 81.6895 231.552 82.4502 229.761C83.9224 226.289 83.3826 220.327 85.2965 215.432C93.2464 195.054 119.697 183.853 138.284 175.805H138.271ZM128.457 185.619C114.495 190.146 92.4735 205.457 88.8175 220.216C86.8913 228.007 91.0626 226.4 96.5466 224.228C110.974 218.511 123.316 199.753 128.457 185.619Z' fill='currentColor'/%3E %3Cpath d='M53.0063 154.941C53.8897 154.696 56.8954 150.574 58.6007 149.494C79.273 136.416 108.656 148.267 129.672 154.954C129.537 156.634 127.88 156.904 126.666 157.456C107.65 166.106 80.6838 173.246 60.9195 164.192C58.2081 162.953 54.9815 159.53 52.6996 158.916C46.7372 157.334 33.8799 158.524 26.0036 157.371C23.8444 157.052 23.9548 158.009 24.1633 154.941C31.6839 153.567 46.5041 156.794 52.9941 154.941H53.0063ZM116.189 154.966C99.2459 150.917 82.8922 145.225 65.5569 151.543C53.6198 155.898 59.3614 159.186 68.3296 161.714C81.0028 165.296 95.1851 163.137 107.601 159.235C110.398 158.352 114.937 157.763 116.189 154.966Z' fill='currentColor'/%3E %3Cpath d='M139.499 136.523C119.71 128.512 89.4933 115.421 83.3469 92.7002C82.5617 89.7926 83.7027 86.6764 82.4268 83.8056C80.0467 78.432 65.5577 70.8747 64.6621 62.937C66.1343 61.3053 82.5862 79.9533 84.2915 80.7017C86.9047 81.8549 91.7139 81.5973 95.6521 82.8364C117.858 89.8907 129.353 117.936 139.487 136.523H139.499ZM127.231 125.494C121.281 108.575 106.878 88.6639 87.9843 86.247C89.5302 105.214 110.595 119.997 127.231 125.494Z' fill='currentColor'/%3E %3Cpath d='M224.138 221.184C217.721 218.019 211.563 212.547 206.974 207.075C205.821 205.701 203.993 205.075 204.533 202.781C209.379 207.21 215.844 211.173 220.482 215.651C221.476 216.608 225.365 219.896 224.138 221.184Z' fill='currentColor'/%3E %3Cpath d='M160.352 85.6259C160.193 86.6688 158.966 89.1838 157.898 88.693V64.1562L159.113 64.6838C160.119 65.1132 160.352 66.6467 160.352 67.2234C160.352 72.6214 161.125 80.7309 160.352 85.6259Z' fill='currentColor'/%3E %3Cpath d='M155.447 222.417C157.005 220.343 157.68 222.564 157.889 224.245C158.882 232.158 159.312 240.206 159.116 248.168C156.515 249.64 155.447 243.076 155.447 242.659V222.417Z' fill='currentColor'/%3E %3Cpath d='M224.15 89.9346C223.733 93.5292 220.85 97.038 218.654 99.7616C217.378 101.332 207.171 112.03 205.76 110.779C209.943 105.798 213.832 100.436 218.077 95.5044C219.783 93.517 221.463 89.6402 224.162 89.9469L224.15 89.9346Z' fill='currentColor'/%3E %3Cpath d='M245.62 154.935C247.791 154.739 251.815 151.12 251.141 156.15C249.595 155.573 247.534 157.389 246.847 157.389H225.377V154.935C231.941 154.506 239.142 155.536 245.62 154.935Z' fill='currentColor'/%3E %3Cpath d='M96.1769 219.555C95.2936 220.328 92.4964 222.242 91.6621 220.586C96.8762 214.121 101.084 206.674 108.813 202.797L96.1646 219.568L96.1769 219.555Z' fill='currentColor'/%3E %3Cpath d='M92.8769 154.927C85.2214 155.111 77.4187 156.768 69.7878 157.111C67.5795 157.209 66.2422 157.847 64.6719 155.541C71.5176 153.124 81.455 151.615 88.6321 152.437C90.4723 152.645 92.4107 152.682 92.8769 154.927Z' fill='currentColor'/%3E %3Cpath d='M111.27 108.316C106.044 103.151 99.7133 98.9181 94.4747 93.839C93.2356 92.6367 91.0027 92.6244 91.6652 89.9131C93.2969 88.2446 107.16 102.034 108.829 104.022C109.982 105.396 111.798 106.022 111.27 108.316Z' fill='currentColor'/%3E %3C/svg%3E"); }
.ico--hrebicek          { --m: url("data:image/svg+xml,%3Csvg width='326' height='303' viewBox='0 0 326 303' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M210.303 131.986L216.476 132.272C221.441 146.125 204.39 150.245 197.346 156.067C190.641 161.603 188.652 192.975 186.261 203.463C183.636 215.029 177.567 245.803 159.061 233.236C146.351 224.607 164.506 169.583 162.258 153.364C161.348 146.814 152.875 141.174 150.224 134.221C147.183 126.268 147.39 117.002 158.294 121.576C157.241 106.787 169.21 96.1302 182.089 91.4517C189.315 88.8266 192.083 88.6836 197.983 94.2329C208.367 104.006 214.02 117.846 210.29 131.973L210.303 131.986ZM202.194 132.986C204.507 130.712 204.221 117.002 203.493 113.441C202.935 110.673 194.279 98.5735 192.083 97.5598C185.728 94.6357 171.745 103.291 168.145 108.684C164.077 114.779 162.063 125.306 168.795 129.945C177.125 135.677 176.579 120.718 184.961 119.484C189.848 119.081 192.902 132.973 192.122 137.184L202.207 132.986H202.194ZM186.911 143.682C187.197 140.381 186.781 128.204 183.649 126.787L174.526 141.083L155.721 128.087C153.291 130.634 166.468 144.436 167.924 147.711C175.643 165.099 157.449 201.371 161.231 221.982C162.167 227.05 166.325 230.897 171.095 227.934C172.355 227.154 177.957 210.52 178.71 207.635C182.271 194.002 182.934 167.062 188.483 156.327C192.226 149.075 205.781 146.892 210.277 139.12C210.55 135.716 209.732 137.821 208.003 138.146C200.79 139.497 194.344 143.422 186.898 143.695L186.911 143.682Z' fill='currentColor'/%3E %3Cpath d='M305.172 154.1V156.648C312.579 159.078 307.68 165.693 301.611 166.758C290.824 168.643 285.223 162.041 278.517 162.041C272.357 162.041 255.814 172.542 250.173 176.401C243.273 181.132 224.818 198.663 219.451 200.262C209.613 203.199 201.439 194.414 205.442 184.953C214.279 164.068 258.114 143.574 260.674 129.72C262.285 121.026 260.336 110.304 271.058 106.263C278.66 103.391 276.828 109.954 278.543 109.915C280.973 109.863 290.084 102.065 299.181 102.221C304.223 102.312 320.715 107.393 323.431 111.747C330.423 122.897 319.857 151.176 305.172 154.087V154.1ZM290.876 147.551C308.499 156.128 321.209 132.93 318.129 117.062C316.556 108.94 296.867 108.251 289.928 110.902C279.245 114.983 279.453 119.012 277.867 129.369C281.376 128.421 295.464 126.809 297.179 129.564C300.857 135.451 289.603 145.848 290.863 147.564L290.876 147.551ZM272.682 137.167L272.032 112.488C265.508 119.103 269.368 130.526 264.911 137.856C258.088 149.084 229.263 164.874 218.061 178.078C213.954 182.912 205.416 192.438 216.033 194.375C225.637 189.488 233.448 180.274 242.363 173.776C249.848 168.331 270.98 154.49 279.713 155.374C285.028 155.92 293.294 162.158 299.973 160.546C296.036 155.439 288.017 151.943 281.779 150.15C279.401 146.732 292.423 138.064 290.863 133.281L272.682 137.167Z' fill='currentColor'/%3E %3Cpath d='M178.633 7.75688C179.4 8.45865 178.776 10.2521 179.751 9.81022L183.792 3.22133C200.323 4.68986 193.396 27.6145 199.27 35.7889C204.001 42.3648 228.563 55.8155 236.906 63.1322C244.717 69.994 259.467 83.5096 247.368 92.9966C240.428 98.4289 231.383 92.1389 224.573 88.461C213.215 82.327 191.2 62.3394 181.752 59.7922C172.265 57.232 163.727 65.8873 152.823 61.4427C143.492 57.6349 151.42 51.3579 150.523 50.1233C135.149 45.0419 124.7 9.5763 142.024 3.26032C154.877 -1.41819 168.106 -1.97701 178.646 7.74388L178.633 7.75688ZM177.788 26.7178C183.363 13.9559 167.599 5.11872 156.527 6.02843C153.369 6.28835 141.27 9.19942 140.334 11.9805C135.435 26.4709 148.197 53.6192 166.118 43.5864C167.56 41.637 146.715 14.7876 177.801 26.7048L177.788 26.7178ZM238.44 72.6581C228.329 62.2484 197.659 46.3675 192.032 36.5427C188.653 30.6555 192.59 16.776 186.248 11.1358L182.987 34.5153L167.418 29.317C165.351 34.2554 177.437 43.5994 175.202 46.1986L155.708 54.6719C161.907 58.6616 170.848 52.6835 177.164 52.7095C189.965 52.7615 213.397 75.5692 225.496 82.353C230.694 85.2641 247.29 94.764 245.432 82.0281C245.211 80.5336 239.856 74.1136 238.44 72.6581Z' fill='currentColor'/%3E %3Cpath d='M92.0157 66.9899C92.7305 58.1008 98.4876 61.8306 101.386 67.3928C108.235 80.4926 98.2407 89.1478 101.048 98.8687C105.57 114.568 120.464 128.915 128.95 142.483C133.966 150.501 143.141 163.926 128.443 167.773C121.204 169.67 114.46 162.847 109.534 158.013C96.2004 144.939 87.7011 126.966 74.5623 113.71C65.5042 111.397 55.8223 112.67 47.9338 106.549C37.836 98.6998 49.0515 96.0616 49.2594 94.775C49.5973 92.6957 45.1917 85.3011 44.5419 81.3763C43.5542 75.4632 46.2703 55.6705 51.3647 52.6425C57.2258 49.1596 72.0281 52.8634 78.1101 55.5926C84.1922 58.3217 87.3502 62.5973 92.0287 67.0029L92.0157 66.9899ZM85.5178 83.8975C91.21 71.2396 82.2818 62.8183 70.1957 59.5953C56.9529 56.0604 52.1964 55.5796 50.585 70.3948C49.2074 83.0138 52.9632 98.3229 68.6362 95.5938C67.8174 89.1348 65.5172 81.8832 72.0411 77.6465L85.5048 83.8975H85.5178ZM84.2312 113.788C90.8591 125.731 100.866 139.351 110.184 149.565C112.692 152.321 126.923 168.137 129.6 159.741C129.509 152.256 123.076 145.407 118.657 139.793C117.228 141.716 120.918 145.342 122.192 147.967C122.647 148.916 124.739 152.269 121.906 150.852L103.725 124.834C106.974 122.43 107.975 129.864 110.873 130.683C111.834 130.89 111.756 129.318 111.509 128.759C110.041 125.523 103.413 118.077 100.905 113.372C98.6306 109.109 94.069 100.376 93.5622 95.9057C92.8214 89.2648 100.06 79.102 97.214 70.9147L88.1169 91.695C85.4918 93.5014 77.2264 84.3914 73.8475 83.8975L76.4337 100.792H51.7416C57.6807 108.109 68.3893 104.34 76.4467 107.927C79.1758 109.135 81.9049 111.8 84.2312 113.788C83.4774 112.423 79.9166 106.484 80.3454 105.99L86.8174 110.552L103.712 135.881C95.6415 129.318 92.4446 120.767 84.2312 113.788Z' fill='currentColor'/%3E %3Cpath d='M30.9474 204.762C18.9392 210.818 -0.879457 186.438 0.030252 177.12C0.563081 171.688 11.9474 160.122 17.0678 157.743C22.9809 154.988 28.4911 153.988 34.8331 156.678C33.3906 145.527 39.0698 144.865 47.2052 150.167C57.121 156.626 54.8597 166.801 69.2981 168.361C86.6865 170.245 103.477 168.686 120.632 174.209C127.571 176.444 135.252 179.122 135.941 187.53C137.045 200.994 116.33 201.033 106.921 200.916C95.0168 200.76 67.6736 193.768 58.3426 199.018C54.6908 201.072 49.7913 207.284 45.6846 209.753C38.0561 214.327 27.5684 217.823 30.9344 204.762H30.9474ZM129.599 191.65C130.171 190.974 129.846 187.348 129.469 186.178C127.727 180.824 103.828 176.886 97.8629 176.184C87.8172 175.015 62.0724 176.73 55.6395 170.323C53.5471 168.231 44.0082 150.804 40.0444 154.092L49.1415 176.158C45.6457 176.847 36.4056 177.445 34.8461 180.72L47.8419 186.581C50.0382 189.05 37.3023 203.671 36.1457 207.349C39.0828 209.961 51.9876 195.262 54.3918 193.768C65.3473 186.997 97.9539 194.808 112.223 194.418C114.602 194.353 129.014 192.325 129.586 191.65H129.599ZM41.357 172.26C39.2517 150.271 4.70875 167.1 6.48918 179.109C8.37358 191.766 32.2599 210.364 40.0314 191.104L27.1526 179.589C30.2456 174.794 35.8598 172.663 41.344 172.247L41.357 172.26Z' fill='currentColor'/%3E %3Cpath d='M288.265 234.664C297.999 245.398 287.369 248.063 277.154 247.699C272.28 247.517 266.523 245.099 262.858 245.229C256.452 245.437 235.385 266.582 228.367 271.572C220.115 277.433 196.632 294.068 191.368 277.602C188.899 269.857 195.475 262.176 200.517 256.731C208.926 247.66 241.116 227.113 242.689 217.028C243.833 209.738 240.986 202.772 246.081 195.728C252.566 186.761 255.529 195.182 257.686 195.364C259.025 195.481 269.005 187.281 278.453 187.84C282.833 188.1 296.57 192.466 299.247 195.702C305.628 203.383 301.287 232.442 288.239 234.677L288.265 234.664ZM289.123 227.698C294.451 222.708 299.325 205.787 294.893 200.082C293.983 198.912 285.068 195.312 283.158 194.936C271.54 192.596 255.1 198.275 261.039 212.506C262.3 213.598 274.698 208.724 277.31 212.467C279.974 219.056 275.503 223.578 273.983 229.427C280.533 231.818 283.613 232.844 289.123 227.698ZM255.789 221.642C255.022 220.784 256.374 201.485 250.603 199.562C248.641 205.306 249.954 211.414 249.174 216.989C246.9 233.299 213.929 249.934 203.13 263.216C199.946 267.14 195.683 272.092 197.853 277.615C200.816 281.8 212.136 274.834 215.385 272.885C225.145 267.023 255.178 238.485 262.754 238.641C269.447 238.784 277.466 244.06 284.367 241.136C279.844 235.937 271.228 234.261 264.873 232.039L271.358 216.457L255.789 221.642Z' fill='currentColor'/%3E %3Cpath d='M128.443 293.131C126.572 306.387 116.409 296.081 114.707 287.997C113.511 282.331 114.98 276.756 114.07 271.74C111.614 258.289 71.1576 238.262 63.633 223.421C59.9422 216.13 65.4135 207.111 73.068 207.397C79.7609 207.657 97.9421 220.172 104.141 224.487C110.34 228.801 125.766 243.045 130.977 244.422C140.373 246.905 148.6 240.55 159.217 246.086C170.03 251.713 160.933 254.767 160.933 256.093C173.682 264.579 180.245 295.509 162.518 300.577C149.094 304.424 138.138 304.008 128.443 293.131ZM114.122 241.134C115.642 239.523 92.1589 223.278 89.8327 221.901C86.5317 219.938 72.2103 210.724 69.2083 215.078C66.3882 221.29 75.2513 228.178 79.6439 232.089C90.0666 241.355 116.942 256.366 120.295 269.413C122.023 276.158 118.93 284.93 121.932 291.831C125.402 292.182 124.012 291.857 124.493 289.895C126.091 283.241 125.181 276.314 127.131 269.738L142.713 273.624L135.5 259.316C137.176 256.911 150.159 254.767 154.149 253.169C156.124 252.376 157.658 253.922 156.995 250.245C146.806 249.023 137.034 252.974 127.118 250.245L126.494 254.117L111.523 241.784L114.109 241.134H114.122ZM131.029 277.536C127.806 295.782 149.094 300.305 162.544 294.106C170.42 290.48 166.586 272.415 162.206 266.489C155.826 257.86 152.2 260.004 142.726 261.941C152.862 277.497 150.146 284.463 131.029 277.523V277.536Z' fill='currentColor'/%3E %3Cpath d='M166.104 222.937C164.506 225.043 163.752 222.911 163.505 221.014C162.751 215.114 163.57 206.342 165.207 200.584C165.597 199.246 165.506 196.647 167.391 196.946L166.091 222.924L166.104 222.937Z' fill='currentColor'/%3E %3Cpath d='M173.902 151.486C174.591 152.396 174.63 172.098 170.029 173.566C171.914 167.016 170.471 159.934 171.316 153.397C171.563 151.499 172.304 149.368 173.915 151.473L173.902 151.486Z' fill='currentColor'/%3E %3Cpath d='M234.981 167.057C233.474 165.692 264.183 143.638 266.158 141.078C267.783 142.911 257.763 151.007 256.386 152.735L234.981 167.057Z' fill='currentColor'/%3E %3Cpath d='M310.359 113.807C310.684 116.003 307.344 115.094 305.824 115.107C302.523 115.133 296.843 113.833 294.725 114.353C291.736 115.068 284.198 123.502 281.781 121.579C286.72 111.507 300.781 109.349 310.359 113.807Z' fill='currentColor'/%3E %3Cpath d='M315.557 128.094C313.699 136.684 309.943 139.595 302.574 143.676L315.557 128.094Z' fill='currentColor'/%3E %3Cpath d='M240.182 85.1886C231.487 84.2399 222.585 78.5997 216.789 72.2188C224.652 75.9875 233.58 79.5744 240.182 85.1886Z' fill='currentColor'/%3E %3Cpath d='M198.593 59.1988C193.902 57.0545 188.69 54.6503 184.259 52.0511C182.582 51.0634 180.984 52.285 181.698 48.8281C188.04 49.348 194.967 54.0654 198.58 59.1988H198.593Z' fill='currentColor'/%3E %3Cpath d='M158.306 42.2987C148 40.1544 141.113 30.7324 142.737 20.2188L147.364 30.5244L158.319 42.2987H158.306Z' fill='currentColor'/%3E %3Cpath d='M56.9396 61.8001C55.4841 68.35 54.4964 81.2679 58.1222 87.025C59.3179 88.9224 63.6325 85.8164 62.138 91.6775C53.1838 88.4546 50.9875 78.0059 52.3391 69.5326C52.599 67.9341 53.9896 60.5395 56.9396 61.8001Z' fill='currentColor'/%3E %3Cpath d='M119.968 189.154C121.008 189.141 123.178 186.217 124.517 190.441C118.006 191.818 111.196 192.325 104.529 191.597C103.178 191.454 98.4211 191.091 98.5251 189.154C105.66 189.076 112.821 189.271 119.968 189.154Z' fill='currentColor'/%3E %3Cpath d='M79.0328 187.885L56.9529 190.459C56.459 187.587 57.1738 187.859 59.487 187.223C65.2572 185.624 73.2756 186.313 79.0328 187.885Z' fill='currentColor'/%3E %3Cpath d='M36.1598 165.782C37.0955 170.928 30.7665 167.042 27.8294 167.172C24.2426 167.341 20.4478 169.966 16.666 169.654C21.4225 163.092 29.168 164.053 36.1598 165.782Z' fill='currentColor'/%3E %3Cpath d='M219.387 254.157C215.202 258.589 210.212 264.437 205.793 268.479C204.364 269.791 203.519 271.52 201.206 271.039C199.321 269.194 215.371 253.56 219.387 254.157Z' fill='currentColor'/%3E %3Cpath d='M234.996 241.15C233.384 239.421 247.199 226.971 249.265 225.555C250.578 229.661 235.918 242.15 234.996 241.15Z' fill='currentColor'/%3E %3Cpath d='M279.168 228.147C280.792 225.301 284.21 224.365 286.381 221.727C288.668 218.933 289.11 214.307 292.151 212.578C293.268 219.479 286.329 227.744 279.168 228.16V228.147Z' fill='currentColor'/%3E %3Cpath d='M98.5265 242.431C90.3391 238.896 82.1908 232.372 76.4336 225.562C84.8159 227.928 92.8993 236.024 98.5265 242.431Z' fill='currentColor'/%3E %3Cpath d='M154.408 291.85C151.198 299.933 130.444 287.457 133.628 284.039C140.035 287.99 146.494 291.993 154.408 291.85Z' fill='currentColor'/%3E %3Cpath d='M164.805 278.824C162.024 279.435 161.868 277.408 160.685 275.809C159.503 274.211 152.342 264.1 153.122 263.242C159.737 265.646 163.102 272.404 164.805 278.824Z' fill='currentColor'/%3E %3C/svg%3E"); }
.ico--nove-koreni       { --m: url("data:image/svg+xml,%3Csvg width='354' height='326' viewBox='0 0 354 326' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M167.347 50.4681C215.742 45.3702 224.185 114.722 176.18 121.307C182.818 154.266 149.239 175.366 120.723 156.39C92.207 137.415 106.828 99.5704 136.477 91.3041L137.238 75.267C118.794 79.0904 90.5077 57.4068 93.6939 38.042C94.9152 30.6608 108.102 9.91532 114.191 5.29538C139.079 -13.5915 179.862 21.9519 167.347 50.4681ZM127.963 8.33994C115.448 10.7473 101.872 34.1655 103.73 45.9543C104.81 52.8223 119.661 64.6819 126.157 66.0095C145.15 69.8683 162.232 52.7161 160.143 33.8646C158.886 22.5715 139.221 6.18043 127.963 8.33994ZM172.852 112.227C196.625 113.359 206.98 84.1175 192.093 67.3193C174.711 47.6713 140.017 65.9564 144.407 91.1093C156.479 91.8174 169.294 100.402 172.852 112.227ZM138.583 100.42C109.43 104.686 105.093 145.982 135.415 154.071C176.923 165.152 178.428 94.5964 138.583 100.42Z' fill='currentColor'/%3E %3Cpath d='M102.086 257.812C97.2357 273.566 94.2974 288.399 75.3928 292.205C67.4451 293.798 39.5485 287.266 34.8224 281.23C30.9105 276.257 25.0869 252.803 26.1135 246.501C27.5473 237.739 43.5843 218.463 52.2223 215.879C64.2236 212.303 72.9855 218.021 84.1548 220.375C80.3314 207.595 104.865 182.141 115.361 181.486C120.123 181.203 129.345 181.273 134.62 181.273C150.657 181.273 168.836 211.206 168.818 224.8C168.783 242.643 139.346 266.61 122.707 264.273C117.202 263.512 106.245 255.228 102.121 257.777L102.086 257.812ZM102.157 246.661C120.973 249.528 122.513 260.113 141.346 248.395C169.438 230.925 159.1 214.905 142.585 192.956L112.459 191.009C109.166 191.912 94.3682 209.347 93.4654 212.852C90.0315 226.039 100.67 234.164 102.192 246.643L102.157 246.661ZM83.6769 229.739C67.746 227.526 59.9045 217.383 46.027 230.978C29.0873 247.563 35.4419 256.662 42.0797 276.664C57.1078 280.08 80.2075 290.488 88.58 271.76C95.4126 256.502 93.3769 243.05 83.6769 229.756V229.739Z' fill='currentColor'/%3E %3Cpath d='M225.372 243.782C240.471 242.472 267.075 261.89 268.261 277.98C269.536 295.203 250.029 323.329 231.939 324.94C215.707 326.392 191.953 306.655 190.342 290.335C188.395 270.811 204.998 245.552 225.372 243.782ZM221.726 254.384C213.619 256.155 200.768 273.785 199.582 281.945C196.236 304.867 229.514 327.56 247.02 306.301C250.861 301.628 259.765 284.21 259.057 278.422C257.517 265.872 233.727 251.782 221.726 254.402V254.384Z' fill='currentColor'/%3E %3Cpath d='M223.531 125.237C239.055 122.759 254.083 133.008 258.526 147.806C261.499 157.683 264.916 175.136 259.428 184.163C256.118 189.615 238.754 203.245 232.523 205.05C198.201 215.069 168.853 171.578 192.962 142.478C198.112 136.247 215.619 126.494 223.531 125.219V125.237ZM244.63 141.363C241.073 137.698 230.364 133.539 225.266 134.07C220.752 134.53 203.228 144.124 200.042 147.806C180.288 170.569 205.175 207.334 234.028 194.182C239.267 191.792 250.419 184.004 251.852 178.393C253.959 170.215 250.631 147.576 244.613 141.363H244.63Z' fill='currentColor'/%3E %3Cpath d='M67.5859 168.469C49.1062 188.454 4.09281 178.913 0.942048 152.273C-0.438623 140.608 -1.53608 123.067 7.06656 114.128C10.1819 110.888 34.7154 98.2323 39.0167 98.25C50.6816 98.25 73.2502 114.995 76.224 126.554C78.8083 136.572 74.9495 160.522 67.6036 168.469H67.5859ZM39.2999 107.578C14.8373 118.482 6.28772 121.084 9.7571 150.538C12.129 170.7 50.1506 178.577 62.6297 160.84C65.9044 156.185 68.5595 138.714 68.3294 132.82C67.8161 119.792 49.7788 112.181 39.2999 107.578Z' fill='currentColor'/%3E %3Cpath d='M283.536 35.1935C298.352 50.0092 298.086 83.2338 280.704 95.6952C270.402 103.076 263.888 98.9699 253.409 98.846C251.143 98.8283 248.577 101.076 246.116 101.059C237.266 101.041 222.362 91.3408 219.229 82.7028C215.901 73.516 217.636 45.4424 224.875 38.0965C237.638 25.1748 269.659 21.316 283.554 35.1935H283.536ZM229.849 83.5701C231.336 85.1986 244.205 92.2258 246.099 92.2612C248.718 92.3143 251.621 89.73 254.914 89.6946C259.286 89.6592 263.127 91.9603 269.004 91.093C290.262 87.9776 294.847 32.2375 258.436 34.4501C249.993 34.9634 229.159 41.9376 227.513 51.4253C226.734 55.9213 228.911 59.7978 228.699 63.4796C228.256 70.6661 222.787 75.7994 229.849 83.5524V83.5701Z' fill='currentColor'/%3E %3Cpath d='M317.397 141.191C360.694 136.447 368.765 212.012 318.654 211.711C273.499 211.446 272.472 146.112 317.397 141.191ZM319.185 149.971C285.199 152.59 283.093 202.755 320.159 202.047C357.561 201.321 348.144 147.74 319.185 149.971Z' fill='currentColor'/%3E %3Cpath d='M125.309 32.251L117.874 26.3743C114.493 11.2931 141.151 9.0451 141.948 21.2764C142.231 25.6662 130.336 35.0831 125.309 32.251Z' fill='currentColor'/%3E %3Cpath d='M114.228 31.0396L109.838 48.7051C102.669 45.2534 110.387 27.0392 114.228 31.0396Z' fill='currentColor'/%3E %3Cpath d='M128.388 59.3173C119.644 61.2644 111.908 50.2013 118.67 43.4219L128.388 59.3173Z' fill='currentColor'/%3E %3Cpath d='M154.461 134.274C154.745 134.363 158.497 138.151 158.533 138.452C159.506 146.789 144.708 156.153 138.07 147.94L142.513 134.558C146.354 133.159 150.567 133.018 154.461 134.274Z' fill='currentColor'/%3E %3Cpath d='M119.556 133.686C118.565 124.854 119.981 116.959 128.371 112.445C126.105 119.048 125.096 129.173 119.556 133.686Z' fill='currentColor'/%3E %3Cpath d='M179.739 103.578L187.687 84.125C194.112 91.2054 189.262 103.277 179.739 103.578Z' fill='currentColor'/%3E %3Cpath d='M143.594 222.86C144.32 223.232 146.072 226.577 149.754 226.701C150.533 234.649 147.134 240.402 139.01 241.641C138.957 237.782 146.143 232.578 146.09 231.958C145.931 229.675 143.771 226.33 140.16 227.728C133.186 230.454 136.036 237.003 137.257 242.508C131.504 248.739 125.858 228.277 126.619 227.516C136.354 227.392 132.301 217.001 143.594 222.86Z' fill='currentColor'/%3E %3Cpath d='M115.997 200.931C117.272 191.868 138.902 196.382 138.973 200.064C132.76 206.224 123.343 200.807 115.997 200.931Z' fill='currentColor'/%3E %3Cpath d='M123.078 246.947C121.839 248.151 105.324 240.026 105.43 235.441C107.979 232.255 107.342 233.123 110.086 234.255C112.475 235.229 125.91 244.203 123.078 246.947Z' fill='currentColor'/%3E %3Cpath d='M45.5484 258.993L55.815 268.198C60.3464 258.32 40.5391 254.32 53.1598 248.727L62.736 256.904L62.0634 268.162L48.6284 272.605C47.8673 272.251 40.0081 259.577 39.8311 258.356C38.3442 248.656 49.8321 244.089 45.5484 258.975V258.993Z' fill='currentColor'/%3E %3Cpath d='M227.018 289.645C230.311 288.76 239.48 296.017 240.029 299.221C243.162 317.683 207.034 309.452 217.938 296.654C218.787 295.645 226.275 289.839 227.036 289.645H227.018Z' fill='currentColor'/%3E %3Cpath d='M252.278 292.99C247.215 297.822 248.985 280.033 248.684 278.033C248.083 274.103 245.073 272.05 245.233 268.227C256.367 270.404 255.163 284.458 252.278 292.99Z' fill='currentColor'/%3E %3Cpath d='M236.364 262.916L233.744 266.421L215.176 267.324C220.84 256.986 226.628 258.668 236.381 262.916H236.364Z' fill='currentColor'/%3E %3Cpath d='M221.531 169.819C222.221 170.191 229.142 174.722 229.461 175.094C233.727 180.174 227.886 192.866 219.655 192.069C216.628 191.786 204.379 185.396 204.45 182.44L211.565 168.12C215.796 165.925 218.168 168.067 221.531 169.819ZM223.974 177.944L215.141 174.386C208.025 191.963 229.266 183.927 223.974 177.944Z' fill='currentColor'/%3E %3Cpath d='M48.2744 148.249C48.6462 148.408 53.6555 153.913 53.7971 154.303C58.1515 166.711 33.6004 175.455 31.3701 160.746C29.9009 151.134 41.141 145.116 48.2744 148.249Z' fill='currentColor'/%3E %3Cpath d='M43.4245 128.348C37.2469 128.189 33.6713 131.039 31.0516 136.349L27.4937 134.508C26.5202 127.906 42.9643 117.126 43.4245 128.331V128.348Z' fill='currentColor'/%3E %3Cpath d='M29.2625 119.523C30.2538 124.993 24.3417 123.081 21.3502 126.639C18.3588 130.197 20.6953 136.41 15.1195 135.437C13.2963 126.25 20.4298 119.506 29.2625 119.523Z' fill='currentColor'/%3E %3Cpath d='M23.9536 158.452C14.7668 159.443 13.2092 149.212 15.1386 142.539C17.9707 143.105 24.6262 157.833 23.9536 158.452Z' fill='currentColor'/%3E %3Cpath d='M268.226 39.8884C268.562 47.5882 262.349 43.0214 259.429 44.2605C247.445 49.3406 272.705 62.811 266.456 45.1986H273.519C273.377 51.5709 275.714 57.8548 268.315 60.3152C248.047 67.0592 240.507 29.9404 268.208 39.9061L268.226 39.8884Z' fill='currentColor'/%3E %3Cpath d='M238.135 61.1103C238.153 65.9073 237.675 70.7219 238.914 75.448C239.781 78.7758 242.985 78.5811 243.888 81.0769C246.614 88.5113 238.277 84.3693 235.338 80.7229C229.338 73.2531 234.559 56.6143 238.135 61.1103Z' fill='currentColor'/%3E %3Cpath d='M275.057 82.0674L270.03 81.4833L276.19 66.4375C282.102 70.8981 276.668 77.0403 275.057 82.0497V82.0674Z' fill='currentColor'/%3E %3Cpath d='M316.868 153.863C327.435 153.332 331.046 170.856 320.355 172.626C304.282 175.281 304.335 154.483 316.868 153.863Z' fill='currentColor'/%3E %3Cpath d='M328.425 195.621L336.373 177.938C342.833 180.663 334.956 196.523 328.425 195.621Z' fill='currentColor'/%3E %3C/svg%3E"); }
.ico--cajovy-list       { --m: url("data:image/svg+xml,%3Csvg width='414' height='456' viewBox='0 0 414 456' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M128.423 206.459C115.374 200.219 102.727 190.811 94.7278 178.516C87.2592 167.028 83.9523 152.568 75.8135 140.3C70.2681 131.932 61.6964 124.741 56.1401 116.559C38.929 91.1868 60.8535 101.118 74.9703 102.156C103.133 104.219 130.256 91.4203 158.671 96.9012C169.282 98.9481 178.72 105.395 188.751 106.959C199.656 108.661 207.257 106.593 218.777 111.328C233.956 117.564 240.556 128.513 252.447 137.948C268.324 150.538 279.665 152.354 293.409 170.835C304.625 185.921 314.037 213.921 331.213 220.897C336.841 223.178 352.879 223.314 355.529 225.19C359.623 228.103 357.14 234.834 353.15 236.9C347.755 239.692 330.659 233.019 324.009 231.981C311.538 230.031 282.541 242.445 267.618 245.434C257.975 247.366 248.121 248.17 238.335 248.731C267.604 274.679 287.045 308.807 301.449 344.833C307.376 351.276 329.614 359.116 331.488 367.263C332.68 372.44 327.297 376.691 322.494 375.577C319.435 374.87 306.589 363.851 301.841 361.216C288.098 353.581 262.645 360.145 246.21 360.194C225.718 360.252 190.17 355.136 172.205 345.481C163.141 340.611 159.969 333.721 149.521 329.565C136.98 324.569 131.623 325.463 119.63 315.892C92.8315 294.516 80.7755 269.147 66.103 239.609C59.8664 227.067 52.5592 221.118 46.1292 210.973C36.9009 196.427 66.0393 207.85 72.061 206.607L128.423 206.459ZM179.074 278.205C171.969 269.828 166.75 258.822 162.711 248.539C161.158 244.594 159.71 234.6 157.791 231.876C157.037 230.81 139.306 215.498 138.036 214.748C128.196 209.003 94.3928 213.494 81.7185 213.238L53.3956 210.16C60.7477 217.331 66.8655 226.122 71.4095 235.337C86.3866 265.667 102.528 301.833 134.472 318.629C142.594 322.899 152.607 323.175 159.911 327.636C165.381 330.983 169.12 336.461 174.612 339.757C180.507 343.289 197.601 347.56 204.871 349.174C231.401 355.074 258.587 354.191 285.43 350.713C278.372 346.782 269.57 338.975 261.457 337.964C247.056 336.148 231.116 344.246 216.586 342.567L256.504 333.593L225.582 316.286C206.006 315.185 188.2 327.161 168.63 325.864L221.088 311.772L171.887 284.821C157.403 283.45 142.665 288.25 128.313 287.731C124.706 287.602 116.916 287.668 116.179 284.074C132.615 287.931 148.353 280.73 164.683 281.178C165.452 281.014 164.906 279.908 164.338 279.469C153.376 270.976 133.906 264.765 122.559 255.383C115.629 254.464 108.79 256.334 101.858 255.892C98.7397 255.694 90.7391 255.339 90.5467 252.235C95.354 252.305 100.251 253.379 105.055 253.283C107.991 253.224 113.698 252.634 116.322 251.221L68.894 219.429L121.485 248.932L118.748 239.549C116.511 233.701 112.521 229.97 108.729 225.448C107.52 224.008 105.859 222.861 109.211 223.724C118.963 228.812 120.534 239.456 125.642 247.299C130.181 254.267 160.684 269.484 169.901 274.282C172.71 275.734 175.935 277.903 179.07 278.22L179.074 278.205ZM55.75 104.723C60.9527 115.611 70.7886 123.427 77.8729 132.908C90.1686 149.364 93.6635 168.268 107.248 183.704C116.999 194.794 129.151 198.711 140.011 207.686C150.271 216.164 154.982 224.808 168.246 230.22C178.121 234.249 186.042 232.978 195.762 234.742C203.22 236.097 211.142 239.76 218.633 241.172C234.876 244.252 256.15 241.338 272.242 237.665C283.564 235.084 296.555 231.678 306.666 226.308C292.947 222.323 284.463 216.315 269.687 220.34C263.749 221.96 241.07 232.219 237.444 231.188C236.6 230.944 235.568 229.545 237.707 228.778C249.349 224.552 260.663 219.674 272.28 215.448C264.092 213.413 251.526 205.45 243.602 204.82C231.827 203.879 221.227 211.259 211.147 215.018C199.682 219.286 186.251 222.116 174.045 221.276C173.952 219.696 176.704 219.676 177.859 219.399C186.093 217.45 194.817 217.012 203.176 214.145C213.32 210.659 222.085 206.252 232.671 202.799C234.3 202.268 235.745 202.187 234.184 200.303C222.998 198.49 207.583 186.424 197.304 185.128C194.206 184.738 187.886 185.725 184.627 186.351C179.321 187.359 163.297 190.467 159.129 191.99C154.961 193.513 152.694 201.974 147.095 198.558C147.408 197.881 158.405 193.58 153.81 192.221L132.268 192.741C131.394 191.395 130.467 190.683 132.576 190.139C136.811 189.053 146.821 190.718 152.272 190.311C163.913 189.439 175.352 185.763 186.526 182.533C188.172 182.056 189.587 181.851 188.052 180.016C175.225 176.748 160.272 163.767 148.234 160.647C140.199 158.564 125.747 161.84 116.779 161.388C112.953 161.189 104.934 160.871 103.942 157.304C116.418 159.946 128.549 157.731 141.039 156.973L140.694 155.265C128.516 149.384 116.614 142.692 105.048 135.682C97.8121 131.298 85.2018 124.375 79.1632 119.446C78.2595 118.708 75.9109 117.344 76.8379 116L140.116 148.484C136.726 136.319 126.266 128.147 119.807 118.134C118.597 116.258 119.151 116.511 120.931 115.587C133.017 125.62 136.621 140.928 147.425 151.721L193.982 173.426C188.52 148.652 176.298 130.431 156.513 114.849C158.807 112.851 158.56 114.558 160.016 115.409C165.998 118.892 170.489 124.358 176.217 128.164L174.552 114.977C179.232 119.616 176.825 127.577 179.11 132.344C181.048 136.381 185.403 140.42 187.885 145.423C194.015 157.729 192.754 171.997 206.331 179.199C217.029 184.872 231.487 188.16 242.595 193.602C233.827 177.705 231.979 159.557 221.861 144.253C218.54 139.221 213.162 135.167 210.869 129.222C212.133 128.202 213.152 130.173 214.046 131.007C218.924 135.586 224.365 142.24 226.838 148.482C229.342 147.702 228.288 147.383 228.346 146.001C228.51 142.207 226.495 137.712 225.973 133.816C225.718 131.994 223.923 131.5 226.966 130.443C228.903 135.072 229.923 140.127 230.716 145.052C231.133 147.619 229.782 149.42 230.413 152.368C231.649 158.149 238.721 177.791 241.388 183.396C246.387 193.922 247.963 195.375 258.218 199.575L283.419 207.907C277.748 197.604 272.345 185.699 268.538 174.528C267.935 172.772 266.943 173.202 269.627 171.987C278.092 184.058 279.69 199.866 290.558 210.34L316.549 218.818C298.749 197.196 291.999 171.732 268.302 154.702C254.362 144.684 247.208 140.332 233.682 128.539C213.529 110.979 208.375 116.913 186.249 112.904C176.576 111.152 166.878 104.838 156.178 102.815C123.769 96.6778 88.785 116.356 55.736 104.744L55.75 104.723ZM187.088 287.831C188.066 289.774 190.344 290.715 192.137 291.801C227.422 312.911 263.894 332.338 298.965 353.8C305.361 357.719 316.062 366.822 321.769 369.29C323.941 370.226 324.406 370.299 326.432 368.76C326.879 367.249 317.71 361.576 316.016 360.46C302.877 351.868 288.103 343.451 274.496 335.444C245.936 318.632 216.778 302.516 187.088 287.831ZM160.358 233.491C167.674 250.964 175.616 268.932 187.866 283.55L231.121 306.742C222.08 287.824 224.874 265.162 208.02 249.716C207.411 248.543 209.24 249.03 209.767 249.35C230.396 261.707 223.937 295.736 238.717 310.486C242.798 314.564 257.477 322.468 263.26 325.55C264.418 326.17 264.14 327.342 266.149 325.568C260.175 315.205 257.691 303.327 253.76 292.072C253.14 290.287 252.21 290.734 254.858 289.526C262.451 301.805 263.174 317.475 272.142 329.161C276.042 334.24 287.037 338.589 292.992 341.316C281.223 314.95 267.87 288.782 248.357 267.199C244.651 263.103 233.694 252.062 229.466 249.482C226.363 247.578 220.03 248.084 216.155 247.091C202.109 243.507 190.326 237.918 174.886 238.82L160.348 233.496L160.358 233.491ZM195.294 179.114C196.209 181.105 198.678 181.54 200.522 182.443C215.442 189.724 232.788 196.59 248.345 202.562C281.187 215.152 314.94 225.481 349.292 232.877L352.743 230.561C351.912 227.714 351.046 229.281 349.487 229.092C345.108 228.549 340.308 228.128 336.019 227.175C287.817 216.406 241.122 197.104 195.285 179.119L195.294 179.114Z' fill='currentColor'/%3E %3C/svg%3E"); }
.ico--muskatovy-orisek  { --m: url("data\:image/svg+xml,%3Csvg%20width=%22332%22%20height=%22302%22%20viewBox=%220%200%20332%20302%22%20fill=%22none%22%20xmlns=%22http%3A//www.w3.org/2000/svg%22%3E%20%3Cpath%20fill=%22currentColor%22%20fill-rule=%22evenodd%22%20clip-rule=%22evenodd%22%20d=%22M246.4%2070.8%20C263.2%2088.1%20269.7%20115.6%20265.4%20141.4%20C261.2%20166.9%20248.7%20192.6%20231.6%20211.9%20C216.9%20228.6%20198.1%20244.5%20177.1%20251.7%20C158.9%20257.9%20139.4%20255.5%20124.8%20244.2%20C110.8%20233.3%20105.1%20215.8%20106.9%20197.5%20C109.2%20174.1%20120.9%20149.6%20134.7%20129.7%20C149.5%20108.4%20168.1%2086.1%20189.9%2073.1%20C209.4%2061.4%20230.4%2054.4%20246.4%2070.8%20Z%20M230.5%2078.2%20C236.1%2091.5%20239.1%20106.8%20235.8%20120.4%20C232.5%20134.1%20223.4%20144.8%20216.1%20155.8%20C207.5%20168.7%20204.3%20185.4%20198.7%20199.7%20C194.1%20211.3%20186.4%20222.9%20176.1%20230.2%20C168.2%20235.8%20159.7%20238.1%20151.2%20235.2%20C160.9%20224.6%20167.1%20211.8%20169.7%20197.8%20C173.3%20178.4%20174.2%20158.1%20184.4%20141.4%20C193.1%20127.2%20207.8%20116.5%20212.5%20100.1%20C215.2%2090.7%20216.4%2082.4%20215.7%2074.8%20C221.8%2073.7%20226.5%2074.5%20230.5%2078.2%20Z%20M200.2%2083.1%20C197.5%2096.4%20191.2%20108.8%20182.2%20118.8%20C172.1%20130.1%20159.5%20138.9%20152.6%20152.4%20C145.7%20166.1%20144.4%20181.9%20139.9%20196.8%20C136.8%20207%20131.4%20216.1%20123.3%20222.9%20C118.4%20215.8%20117.2%20206.2%20119.4%20195.2%20C123.2%20176.2%20132.7%20157.5%20143.9%20141.6%20C156.9%20123.1%20173.7%20102.8%20190.6%2091.2%20C193.9%2088.9%20197%2086.2%20200.2%2083.1%20Z%20M251.4%20102.2%20C255.1%20114.7%20254.8%20127.8%20251.3%20139.5%20C247.8%20151.3%20241.3%20161.4%20234.4%20170.9%20C229.5%20177.7%20225.8%20184.6%20223.7%20192.1%20C221.7%20185.4%20222.6%20176.8%20226.2%20168.4%20C231.1%20156.9%20239.8%20146.9%20242.8%20134.6%20C245.5%20123.4%20244.8%20111.5%20241.6%20101.1%20C245.1%20100.3%20248.5%20100.6%20251.4%20102.2%20Z%20M144.2%20232.6%20C151.2%20239.8%20162.3%20242.7%20172.6%20239.9%20C165.7%20247.2%20154.1%20249.5%20144.2%20246.1%20C139.7%20244.6%20136.1%20242.2%20133.1%20239.1%20C136.9%20238.5%20140.7%20236.4%20144.2%20232.6%20Z%20M118.4%20184.8%20C124.1%20176.5%20130.3%20168.7%20136.7%20161.6%20C132.8%20174.8%20129.5%20187.7%20128.5%20201.1%20C127.8%20210.4%20129.2%20219.2%20132.7%20226.8%20C123.1%20221.2%20117.2%20210.7%20116.8%20198.6%20C116.7%20194.2%20117.3%20189.6%20118.4%20184.8%20Z%22/%3E%20%3Cpath%20fill=%22currentColor%22%20fill-rule=%22evenodd%22%20clip-rule=%22evenodd%22%20d=%22M88.1%20154.6%20C76.2%20151.2%2064.8%20153.1%2055.4%20160.1%20C46.5%20166.8%2040.2%20178.5%2040.8%20190.2%20C41.5%20203.7%2052.3%20212.1%2064.9%20214.1%20C76.1%20215.8%2087.8%20211.4%2095.5%20202.5%20C101.4%20195.7%20103.8%20184.9%2099.9%20176.2%20C97.5%20170.8%2093.4%20166.7%2088.1%20154.6%20Z%20M84.9%20166.1%20C90.8%20174.7%2093.4%20184.3%2090.2%20193.2%20C87.5%20200.8%2080.1%20205.8%2072.5%20206.6%20C78.6%20200.3%2081.4%20192.4%2080.6%20184.2%20C79.9%20177.2%2076.6%20171.6%2072.1%20166.7%20C76.1%20165.5%2080.4%20165.2%2084.9%20166.1%20Z%22/%3E%20%3Cpath%20fill=%22currentColor%22%20d=%22M207.5%2091.1C211.1%20102.8%20207.9%20114.9%20201.4%20124.9C195.8%20133.4%20187.4%20140.6%20182.4%20149.6C177.3%20158.7%20175.7%20169.1%20173.7%20179.4C171.4%20191.5%20167.1%20203.4%20160.2%20213.4C157.6%20217.2%20154.1%20221.2%20150.2%20224.1C157.1%20213.1%20160.7%20200.7%20162.4%20187.8C164.1%20175.2%20165.1%20162.1%20171.2%20150.7C178.1%20137.8%20190.3%20129.4%20197.3%20117.2C202.2%20108.6%20204.9%2099.5%20203.9%2089.8C205.2%2090%20206.4%2090.4%20207.5%2091.1Z%22/%3E%20%3Cpath%20fill=%22currentColor%22%20d=%22M237.8%20118.2C239.9%20129.4%20236.7%20140.7%20231.1%20150.5C225.2%20160.8%20217.1%20168.9%20213.4%20180.2C210.7%20188.3%20210.1%20197%20206.8%20205.2C203.6%20213.1%20198.2%20220.6%20191.6%20226.2C197.4%20216.8%20200.1%20206.3%20201.5%20195.6C203.1%20183.4%20205.5%20172.1%20211.8%20161.6C217.2%20152.7%20225.4%20145.1%20229.2%20135.4C231.6%20129.2%20232.6%20122.7%20231.8%20116.2C233.9%20116.5%20235.9%20117.1%20237.8%20118.2Z%22/%3E%20%3C/svg%3E"); }
/* Benefit pictograms sit in a light disc, the way the packaging badges do.
   They are two-tone fills (not strokes), so masking would flood them solid —
   they render as images instead and keep their own dark/light artwork. */
.ico--badge {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: var(--cream);
  border: 2.5px solid var(--espresso);
  background-color: var(--cream);
  -webkit-mask: none;
  mask: none;
}
.ico--badge img { width: 72%; height: 72%; object-fit: contain; }

/* --- Full-bleed photo band ---------------------------------------------- */
.shot { position: relative; line-height: 0; }
.shot img { width: 100%; height: clamp(320px, 46vw, 620px); object-fit: cover; }

.shot__tag {
  position: absolute;
  left: var(--gutter);
  bottom: clamp(20px, 3vw, 40px);
  z-index: 2;
  max-width: min(520px, 78vw);
  padding: clamp(18px, 2.4vw, 30px) clamp(20px, 2.8vw, 36px);
  background: var(--violet);
  color: #fff;
  border-radius: 26px;
  line-height: 1.5;
}
.shot__tag h2 { margin-bottom: 8px; }
.shot__tag p { font-size: 15px; opacity: .88; }

/* --- Products ----------------------------------------------------------- */
.stack-head { position: relative; text-align: center; margin-bottom: clamp(34px, 5vw, 60px); }
.stack-head .kicker { margin-bottom: 22px; }
.stack-head p { margin: 18px auto 0; max-width: 52ch; }

.products { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(20px, 3vw, 34px); }

/* Tiles are cross-paired with the pouches (gold label on violet, violet label
   on gold) so the product pops instead of sinking into a same-hue background. */
.pcard {
  --tile: var(--violet);
  display: flex;
  flex-direction: column;
  border: 3px solid var(--espresso);
  border-radius: 34px;
  overflow: hidden;
  background: var(--cream);
  transition: transform .22s var(--ease);
}
.pcard:hover { transform: translateY(-6px); }
.pcard--violet { --tile: var(--gold); }

.pcard__tile {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(30px, 4vw, 46px) 24px;
  background: var(--tile);
  border-bottom: 3px solid var(--espresso);
}
.pcard__tile img {
  width: auto;
  height: clamp(240px, 27vw, 340px);
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, .35));
  transition: transform .3s var(--ease);
}
.pcard:hover .pcard__tile img { transform: rotate(-4deg) scale(1.04); }

.pcard__flag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 7px 15px;
  border: 2px solid var(--espresso);
  border-radius: 999px;
  background: var(--cream);
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--espresso);
}

.pcard__body { display: flex; flex-direction: column; flex: 1; gap: 14px; padding: clamp(24px, 3vw, 32px); }
.pcard__body p { font-size: 15.5px; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  padding: 5px 13px;
  border: 1.5px solid rgba(35, 21, 13, .25);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
}
/* pack size picker on the landing cards */
.pcard .finelabel { margin-top: auto; padding-top: 4px; margin-bottom: 8px; }
.cardsizes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.cardsize {
  padding: 10px 4px;
  border: 2px solid rgba(35, 21, 13, .2);
  border-radius: 14px;
  background: transparent;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .16s var(--ease), background-color .16s var(--ease);
}
.cardsize:hover { border-color: var(--espresso); }
.cardsize[aria-checked="true"] { border-color: var(--espresso); background: var(--tile); color: #fff; }
.pcard--violet .cardsize[aria-checked="true"] { color: var(--espresso); }

.pcard__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 10px; margin-top: 0; padding-top: 4px; }
.pcard__price b { font-family: var(--display); font-size: clamp(26px, 3vw, 34px); font-weight: 600; }
.pcard__price span { font-size: 13.5px; opacity: .7; }
/* Primary action is the detail page; adding to the cart is the smaller,
   secondary step underneath it. */
.pcard__links { display: flex; flex-direction: column; gap: 10px; }
.pcard__links .btn--sm { align-self: stretch; justify-content: center; }
.textlink {
  align-self: center;
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
}

/* --- Preparation split -------------------------------------------------- */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); }
.split__half { padding: clamp(34px, 4.5vw, 68px) var(--gutter); }
.split__half--gold   { background: var(--gold);   color: var(--espresso); }
.split__half--violet { background: var(--violet); color: #fff; }
.split__half > .h2 { margin-block: 12px 8px; }
.split__inner { width: min(560px, 100%); margin-inline: auto; }
.split__photo {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border: 3px solid var(--espresso);
  border-radius: 26px;
  margin-block: 24px;
}
/* both photos carry the opposite colour to their half, so a dark frame reads
   against either one — a gold frame would vanish into the gold cup shot. */
/* both source shots are portrait — pull the crop onto the drink itself */
.split__photo--hot  { object-position: 50% 78%; }
.split__photo--iced { object-position: 50% 16%; }

.steps { display: grid; gap: 12px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; }
.step__n {
  grid-row: span 2;
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border: 2.5px solid currentColor;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
}
.step h3 { font-family: var(--display); font-size: 18px; font-weight: 600; align-self: center; }
.step p { font-size: 15px; opacity: .85; }

/* --- Claim blocks ------------------------------------------------------- */
.claims { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: clamp(16px, 2.2vw, 24px); }
.claim {
  padding: clamp(24px, 3vw, 34px);
  border: 3px solid var(--espresso);
  border-radius: 28px;
  background: var(--cream);
}
.band--espresso .claim { border-color: var(--gold); background: var(--espresso-2); }
.band--violet .claim { border-color: #fff; background: rgba(255,255,255,.08); }
.claim .ico { width: 46px; height: 46px; margin-bottom: 18px; color: var(--accent); }
.claim h3 { font-size: 20px; margin-bottom: 8px; }
.claim p { font-size: 14.5px; opacity: .82; }
.claim .tag { display: inline-block; margin-top: 14px; border-color: currentColor; opacity: .8; }

/* --- Spice row ---------------------------------------------------------- */
.spice-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: clamp(12px, 1.8vw, 20px); }
.spice {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: clamp(22px, 2.8vw, 32px) 14px;
  border: 2.5px solid currentColor;
  border-radius: 24px;
  text-align: center;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.spice .ico { width: 72px; height: 72px; color: #fff; }
.spice b { font-family: var(--display); font-size: 16px; font-weight: 600; color: #fff; }
.spice span { font-size: 12.5px; opacity: .7; }
.spice:hover { background: var(--gold); color: var(--espresso); }
.spice:hover .ico, .spice:hover b { color: var(--espresso); }

.recipe {
  margin-top: clamp(24px, 3vw, 34px);
  padding: clamp(20px, 2.6vw, 30px);
  border: 2px dashed currentColor;
  border-radius: 22px;
  font-size: 15px;
  opacity: .85;
}

/* --- Reviews ------------------------------------------------------------ */
.score { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 34px; font-size: 15px; }
.stars { color: var(--gold-lite); letter-spacing: 3px; font-size: 19px; }
.band--cream .stars, .band--gold .stars { color: var(--rust); }

.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); gap: clamp(16px, 2.2vw, 24px); }
.review {
  display: flex; flex-direction: column; gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  border: 3px solid currentColor;
  border-radius: 28px;
}
.review p { font-size: 15.5px; }
.review footer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review__pic {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--espresso);
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
}
.review b { display: block; font-size: 15px; }
.review small { opacity: .7; }

/* --- Two-column feature ------------------------------------------------- */
.duo { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(28px, 4vw, 56px); align-items: center; }
.checks { display: grid; gap: 13px; margin-top: 26px; }
.checks li { display: flex; gap: 12px; font-size: 15.5px; }
.checks li::before { content: "✦"; color: var(--accent); font-weight: 700; }

/* --- Newsletter --------------------------------------------------------- */
.signup { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 26px; }
.signup input {
  flex: 1 1 260px; max-width: 360px;
  padding: 16px 22px;
  border: 2.5px solid var(--espresso);
  border-radius: 999px;
  background: var(--cream);
}
.signup input::placeholder { color: rgba(35, 21, 13, .5); }

/* --- Footer ------------------------------------------------------------- */
.footer { background: var(--espresso); color: var(--cream); padding-block: clamp(50px, 6vw, 84px) 26px; }
.footer .logo { color: var(--gold); width: clamp(150px, 22vw, 260px); margin-bottom: 20px; }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(auto-fit, minmax(140px, 1fr)); gap: clamp(28px, 4vw, 52px); }
.footer p { max-width: 36ch; opacity: .72; font-size: 15px; }
.footer h4 {
  font-family: var(--display); font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 15px;
}
.footer ul { display: grid; gap: 10px; font-size: 15px; }
.footer ul a:hover { color: var(--gold); }
.footer__end {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  margin-top: clamp(36px, 5vw, 58px); padding-top: 22px;
  border-top: 1px solid rgba(255, 244, 222, .18);
  font-size: 13px; opacity: .6;
}

/* ==========================================================================
   Product page
   ========================================================================== */
.crumbs { padding-block: 20px; font-size: 13.5px; opacity: .75; }
.crumbs b { font-weight: 500; opacity: 1; }

.pdp { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(28px, 4vw, 60px); padding-bottom: clamp(50px, 6vw, 84px); }

/* --stage is the pouch backdrop (cross-paired for contrast, like the landing
   cards); --pick tints the selected pack size and must stay light enough for
   dark label text. */
.pdp__stage {
  display: grid; place-items: center;
  aspect-ratio: 1 / 1;
  padding: clamp(26px, 4vw, 48px);
  background: var(--stage, var(--espresso));
  border: 3px solid var(--espresso);
  border-radius: 34px;
}
.pdp__stage img { width: auto; max-width: 100%; max-height: 100%; border-radius: 18px; filter: drop-shadow(0 22px 30px rgba(0,0,0,.28)); }

.thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 12px; }
.thumb {
  display: grid; place-items: center;
  aspect-ratio: 1 / 1; padding: 8px;
  border: 3px solid rgba(35, 21, 13, .18);
  border-radius: 20px;
  background: var(--cream);
  cursor: pointer; overflow: hidden;
}
.thumb img { max-height: 100%; width: auto; object-fit: contain; }
.thumb[aria-selected="true"] { border-color: var(--espresso); }

.pdp__info h1 { font-size: clamp(32px, 4.6vw, 60px); text-transform: uppercase; margin-block: 12px 14px; }
.rating { display: flex; align-items: center; gap: 10px; font-size: 14px; opacity: .8; }
.pdp__lede { margin-top: 18px; font-size: 16.5px; max-width: 52ch; }

.pricing { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 14px; margin-top: 28px; }
.pricing .amount { font-family: var(--display); font-size: clamp(32px, 4vw, 46px); font-weight: 600; }
.pricing span { font-size: 14px; opacity: .7; }
.finelabel { margin-top: 6px; font-family: var(--display); font-size: 11.5px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; opacity: .6; }

.pickers { display: grid; grid-template-columns: repeat(auto-fit, minmax(96px, 1fr)); gap: 10px; }
.pick {
  padding: 14px 8px;
  border: 2.5px solid rgba(35, 21, 13, .2);
  border-radius: 18px;
  background: transparent;
  text-align: center;
  cursor: pointer;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.pick b { display: block; font-family: var(--display); font-size: 17px; font-weight: 600; }
.pick span { font-size: 12.5px; opacity: .7; }
.pick[aria-checked="true"] { border-color: var(--espresso); background: var(--pick, var(--gold)); }

.buy { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.stepper { display: flex; align-items: center; border: 2.5px solid var(--espresso); border-radius: 999px; }
.stepper button { width: 46px; height: 54px; border: 0; background: transparent; font-size: 21px; cursor: pointer; border-radius: 999px; }
.stepper output { min-width: 30px; text-align: center; font-family: var(--display); font-weight: 600; }
.buy .btn { flex: 1 1 220px; justify-content: center; }

.perks { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px 24px; margin-top: 30px; padding-top: 26px; border-top: 2px solid rgba(35, 21, 13, .15); }
.perks div { display: grid; grid-template-columns: auto 1fr; gap: 2px 10px; }
.perks div::before { content: "✦"; grid-row: span 2; color: var(--violet); font-weight: 700; line-height: 1.5; }
.perks b { font-size: 14.5px; }
.perks span { font-size: 13px; opacity: .7; }

.detail { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(28px, 4vw, 56px); }
.detail p + p { margin-top: 14px; }
.detail .h2 { margin-bottom: 18px; }
.ticks { display: grid; gap: 10px; margin-top: 24px; }
.ticks li { display: flex; gap: 12px; padding: 14px 18px; border: 2px solid currentColor; border-radius: 16px; font-size: 15px; }
.ticks li::before { content: "✦"; color: var(--violet); font-weight: 700; }

.tbl { width: 100%; margin-top: 22px; border-collapse: collapse; font-size: 15px; }
.tbl th, .tbl td { padding: 12px 4px; text-align: left; border-bottom: 1.5px solid rgba(35, 21, 13, .16); }
.tbl td { text-align: right; font-weight: 500; }
.tbl th { font-weight: 400; opacity: .78; }
.scroller { overflow-x: auto; }
.nutri { min-width: 380px; }
.nutri thead th { font-family: var(--display); font-weight: 600; text-align: right; opacity: 1; }
.nutri thead th:first-child { text-align: left; }
.nutri td { font-variant-numeric: tabular-nums; }
.nutri tr.sub th { padding-left: 22px; font-size: 13.5px; }
.note { margin-top: 14px; font-size: 13px; opacity: .68; }

.crossell {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px;
  padding: clamp(24px, 3vw, 36px);
  border: 3px solid var(--espresso);
  border-radius: 30px;
}
.crossell img { width: 78px; }
.crossell div { flex: 1 1 260px; }
.crossell h3 { font-size: 21px; margin-bottom: 6px; }
.crossell p { font-size: 14.5px; opacity: .8; }

/* --- Toast -------------------------------------------------------------- */
.toast {
  position: fixed; left: 50%; bottom: 24px; z-index: 90;
  padding: 15px 26px;
  border: 2.5px solid var(--gold);
  border-radius: 999px;
  background: var(--espresso);
  color: var(--cream);
  font-size: 15px;
  transform: translate(-50%, 20px);
  opacity: 0; visibility: hidden;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.toast[data-show="true"] { opacity: 1; visibility: visible; transform: translate(-50%, 0); }


/* Let the preparation section break out of the Shoptet content column,
   just like the hero, bands, marquee and photo section. */
.split {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-inline: -50vw;
}

/* The global Shoptet override uses --fg with !important.  Define that
   variable on each half so the intended foreground colour survives. */
.split__half--violet {
  --fg: #fff;
  --accent: var(--gold-lite);
  color: var(--fg);
}

.split__half--gold {
  --fg: var(--espresso);
  --accent: var(--espresso);
  color: var(--fg);
}

/* Keep the small violet-panel body copy at fully accessible contrast. */
.split__half--violet .step p,
.split__half--violet > .split__inner > p {
  color: var(--fg) !important;
  opacity: .9;
}

.shot__tag {
  --fg: #fff;
  color: var(--fg);
}

.shot__tag p {
  opacity: 1;
}

/* ========================================================================
   Shoptet page-canvas isolation

   The home-page editor puts this content inside a max-width container. Its
   background was visible as brown gutters, and its inherited colours could
   also leak into Spicea sections. These rules deliberately affect only a
   page that contains the Spicea start marker; the Shoptet header/footer stay
   untouched.
   ======================================================================== */
body:has(#content-start) #content,
body:has(#content-start) .content-wrapper,
body:has(#content-start) .content,
body:has(#content-start) .content-in,
body:has(#content-start) .content-inner,
body:has(#content-start) #main-content {
  background: var(--cream) !important;
}

/* Use calc() rather than the left: 50% technique so this remains full width
   even when Shoptet adds positioning/max-width rules to its editor wrapper. */
#content-start.hero,
#content-start ~ .marquee,
#content-start ~ .band,
#content-start ~ .shot,
#content-start ~ .split {
  width: 100vw !important;
  max-width: none !important;
  left: auto !important;
  right: auto !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

main > .hero {
  margin-top: -90px !important;
  position: relative;
  z-index: 1;
}
 
main > section:last-of-type {
  margin-bottom: -110px !important;
}
 

/* Explicit paints prevent Shoptet's background and colour variables from
   showing through any section, including the two-column preparation block. */
#content-start.hero { background-color: #EFE0D0 !important; color: var(--espresso) !important; }
.band--espresso { background-color: var(--espresso) !important; color: var(--cream) !important; }
.band--gold { background-color: var(--gold) !important; color: var(--espresso) !important; }
.band--violet { background-color: var(--violet) !important; color: #fff !important; }
.band--cream { background-color: var(--cream) !important; color: var(--espresso) !important; }
.marquee { background-color: var(--gold) !important; color: var(--espresso) !important; }
.marquee--violet { background-color: var(--violet) !important; color: #fff !important; }
.shot { background-color: var(--espresso) !important; }
.split__half--violet { background-color: var(--violet) !important; }
.split__half--gold { background-color: var(--gold) !important; }
