
/* Odstranění Wishlist ikon/tlačítek ve WooCommerce */

/* YITH Wishlist */
.yith-wcwl-add-to-wishlist,
.yith-wcwl-add-button,
.yith-wcwl-wishlistaddedbrowse,
.yith-wcwl-wishlistexistsbrowse,
.add_to_wishlist,
a.add_to_wishlist,
.yith-wcwl-icon,
.yith-wcwl-icon-svg,
.yith-wcwl-add-to-wishlist-button {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* TI WooCommerce Wishlist */
.tinv-wraper,
.tinvwl_add_to_wishlist_button,
.tinv-wishlist,
.tinvwl-icon-heart,
.tinvwl-tooltip {
  display: none !important;
}

/* WPC Smart Wishlist */
.woosw-btn,
.woosw-button,
.woosw-btn-icon,
.woosw-icon,
.woosw-popup,
.woosw-area {
  display: none !important;
}

/* Ikona wishlist v hlavičce/menu */
.header-wishlist,
.site-header .wishlist,
.wishlist-icon,
.wishlist-button,
.wishlist-link,
.wishlist_products_counter,
.header-wishlist-icon,
.menu-wishlist,
.nav-wishlist,
.account-wishlist,
.woo-wishlist-link {
  display: none !important;
}

/* Tvrdé skrytí všech prvků s wishlist v názvu třídy */
body [class*="wishlist"],
body [class*="Wishlist"],
body [class*="wish-list"],
body [class*="woosw"],
body [class*="tinvwl"],
body [class*="yith-wcwl"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  max-height: 0 !important;
  width: 0 !important;
  max-width: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

/* Pokud je wishlist jako odkaz v menu nebo ikoně */
body a[href*="wishlist"],
body a[href*="wishlist-view"],
body a[href*="oblibene"],
body a[href*="seznam-prani"] {
  display: none !important;
}

/* Skrytí ikon přes pseudo-elementy */
body [class*="wishlist"]::before,
body [class*="wishlist"]::after,
body [class*="woosw"]::before,
body [class*="woosw"]::after,
body [class*="tinvwl"]::before,
body [class*="tinvwl"]::after,
body [class*="yith-wcwl"]::before,
body [class*="yith-wcwl"]::after {
  display: none !important;
  content: none !important;
}

/* Skrytí ikon Wishlist a Compare ve WooCommerce */

/* Wishlist */
.yith-wcwl-add-to-wishlist,
.yith-wcwl-wishlistaddedbrowse,
.yith-wcwl-wishlistexistsbrowse,
.add_to_wishlist,
.tinv-wraper,
.tinvwl_add_to_wishlist_button,
.wishlist-button,
.wishlist-icon,
[class*="wishlist"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Compare */
.compare,
.compare-button,
.woosc-btn,
.wooscp-btn,
.yith-woocompare-widget,
.yith-compare,
.product-compare,
[class*="compare"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Skrytí tlačítek v kartě produktu */
.product .yith-wcwl-add-to-wishlist,
.product .add_to_wishlist,
.product .compare,
.product .woosc-btn,
.product .wooscp-btn {
  display: none !important;
}

/* Skrytí na detailu produktu */
.single-product .yith-wcwl-add-to-wishlist,
.single-product .add_to_wishlist,
.single-product .compare,
.single-product .woosc-btn,
.single-product .wooscp-btn {
  display: none !important;
}

/* Kompletní skrytí drobečkové navigace ve WordPressu */
html body .breadcrumb,
html body .breadcrumbs,
html body .breadcrumb-trail,
html body .breadcrumb-wrap,
html body .breadcrumb-wrapper,
html body .breadcrumb-area,
html body .site-breadcrumb,
html body .page-breadcrumb,
html body .entry-breadcrumb,
html body .rank-math-breadcrumb,
html body .yoast-breadcrumb,
html body .woocommerce-breadcrumb,
html body .ast-breadcrumbs,
html body .ast-breadcrumbs-wrapper,
html body .kadence-breadcrumbs,
html body .generate-breadcrumbs,
html body .oceanwp-breadcrumb,
html body .blocksy-breadcrumbs,
html body #breadcrumbs,
html body [class*="breadcrumb"],
html body [id*="breadcrumb"],
html body nav[aria-label="breadcrumb"],
html body nav[aria-label="Breadcrumb"],
html body nav[aria-label="breadcrumbs"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  max-height: 0 !important;
  min-height: 0 !important;
  width: 0 !important;
  max-width: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  left: -99999px !important;
}

/* Základní tmavě fialová barva webu */
:root {
  --main-color: #3d0769;
  --main-color-dark: #2a034a;
  --main-color-light: #f3e8ff;
}

/* Odkazy */
a,
.entry-content a,
.wp-block-post-title a {
  color: var(--main-color);
}

a:hover,
.entry-content a:hover {
  color: var(--main-color-dark);
}

/* Tlačítka */
button,
input[type="button"],
input[type="submit"],
.wp-block-button__link,
.button,
.btn {
  background-color: var(--main-color) !important;
  border-color: var(--main-color) !important;
  color: #ffffff !important;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover,
.button:hover,
.btn:hover {
  background-color: var(--main-color-dark) !important;
  border-color: var(--main-color-dark) !important;
  color: #ffffff !important;
}

/* Menu a aktivní položky */
.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.menu a:hover,
.menu .current-menu-item > a {
  color: var(--main-color) !important;
}

/* Ikony, zvýraznění a dekorace */
.has-accent-color,
.accent,
.highlight {
  color: var(--main-color) !important;
}

/* WooCommerce – tlačítka a cena */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .single_add_to_cart_button {
  background-color: var(--main-color) !important;
  border-color: var(--main-color) !important;
  color: #ffffff !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .single_add_to_cart_button:hover {
  background-color: var(--main-color-dark) !important;
  border-color: var(--main-color-dark) !important;
}

.woocommerce-Price-amount,
.price,
.product .price {
  color: var(--main-color) !important;
}

/* Výběr textu */
::selection {
  background: var(--main-color);
  color: #ffffff;
}

/*
Theme Name: 	   eShopKit
Text Domain: 	   eshopkit
Template: 		   shopire
Version:            0.4
Tested up to:       7.0
Requires at least:  4.7
Requires PHP:       5.6
Author:             WPFable
Author URI:         https://wpfable.com/
Theme URI:          https://wpfable.com/themes/eshopkit-free/
Description:        eShopKit is a fast, clean, lightweight theme. eShopKit is customizable and modern-looking free responsive WooCommerce WordPress theme for e-commerce stores like clothing, fashion, electronics, ebooks, dress store, sports shop, marketplace, multivendor, equipments or online products. Theme is compatible with Elementor, WPML, Polylang, Yoast SEO, WooCommerce, Contact Form 7, Jetpack and other popular plugins. The theme is SEO friendly, WPML and RTL ready. Looking for a WooCommerce theme? Look no further! eShopKit Pro demo https://demos.wpfable.com/premium/eshopkit/
Tags:               one-column, two-columns, right-sidebar, flexible-header, custom-background, custom-header, custom-menu, editor-style, featured-images, footer-widgets, post-formats, theme-options, threaded-comments, translation-ready, full-width-template, custom-logo, blog, e-commerce, portfolio
License: GPLv3 or later
License URI:  https://www.gnu.org/licenses/gpl-3.0.html

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned
with others.
*/

:root {
    --wf-main-rgb: 100, 42, 251;
    --wf-secondary-color: #18273a;
}

.wf_navbar-list-right .wf_navbar-search-form {
    width: 100%;
}

/* Header--Nine */

.header--nine .wf_header-topbar {
    color: #fff;
    background-color: var(--wf-main-color);
}

.header--nine .wf_header-topbar .widget.widget_nav_menu a,
.header--nine .wf_header-topbar .widget.widget_none a,
.header--nine .wf_header-topbar .widget.widget_none .widget-title {
    color: inherit;
}

.header--nine .wf_header-topbar .widget.widget_nav_menu a:focus,
.header--nine .wf_header-topbar .widget.widget_nav_menu a:hover {
    text-decoration: underline;
}

.header--nine .wf_mobilenav-topbar,
.header--nine .wf_mobilenav,
.header--nine .wf_header-topbar {
    border-bottom: 1px solid rgba(189, 189, 189, 0.3);
}

.header--nine .wf_navbar-wrapper,
.header--nine .wf_navbar-wrapper.is--sticky.on {
    background-color: var(--wf-secondary-color);
}

.header--nine .wf_navbar-menu {
    min-height: 6rem;
    justify-content: space-between;
}

.header--nine .product-categories .product-categories-btn {
    border-radius: 50px;
    padding: 1.2rem 1.4rem;
}

.header--nine .product-categories .wf_navbar-nav {
    top: calc(100% + 9px);
}

.header--nine .product-categories .wf_navbar-nav .wf_navbar-mainmenu>li:first-child>a {
    border-radius: 12px 12px 0 0;
}

.header--nine .product-categories .wf_navbar-nav .wf_navbar-mainmenu:has(:not(.product-categories-more-btn))>li:last-child>a,
.header--nine .product-categories .wf_navbar-nav .product-categories-more-btn {
    border-radius: 0 0 12px 12px;
}

.menu__active-one .header--nine .product-categories .wf_navbar-nav .wf_navbar-mainmenu>li>a::before {
    display: none;
}

.header--nine .wf_navbar-menu .wf_navbar-nav {
    text-align: start;
}

.header--nine .wf_navbar-info-contact .contact__list i {
    width: 3.4rem;
    height: 3.4rem;
    font-size: 3rem;
    color: var(--wf-secondary-color);
    background: transparent;
    outline: none;
}

.header--nine button.wf_navbar-sidebar-toggle {
    width: 4rem;
    height: 4rem;
}

.header--nine button.wf_navbar-sidebar-toggle .lines {
    transform: translateY(-1px);
}

.header--nine .wf_navbar-list-right>li:not(:last-child) {
    margin-right: 1.8rem;
}

.header--nine .wf_navbar-compare-item .wf_compare_btn,
.header--nine .wf_navbar-favourite-item .wf_favourite_btn,
.header--nine .wf_navbar-user-item .wf_user_btn,
.header--nine .wf_navbar-cart-item .wf_navbar-cart-icon {
    width: 2rem;
    height: 2rem;
    outline: none;
    line-height: 1.3;
    font-size: 1.8rem;
}

.header--nine .wf_navbar-menu .wf_navbar-compare-item .wf_compare_btn,
.header--nine .wf_navbar-menu .wf_navbar-favourite-item .wf_favourite_btn,
.header--nine .wf_navbar-menu .wf_navbar-user-item .wf_user_btn,
.header--nine .wf_navbar-menu .wf_navbar-cart-item .wf_navbar-cart-icon {
    color: #fff;
}

.header--nine .wf_navbar-compare-item .wf_compare_btn:after,
.header--nine .wf_navbar-favourite-item .wf_favourite_btn:after,
.header--nine .wf_navbar-user-item .wf_user_btn:after,
.header--nine .wf_navbar-cart-item .wf_navbar-cart-icon:after,
.header--nine .wf_navbar-search-item button.wf_navbar-search-toggle:after {
    display: none;
}

.header--nine .header-search-form .header-search-button:focus {
    outline: 1px solid currentColor;
    outline-offset: -3px;
}

.header--nine .wf_navbar-compare-item .wf_compare_btn:focus,
.header--nine .wf_navbar-favourite-item .wf_favourite_btn:focus,
.header--nine .wf_navbar-user-item .wf_user_btn:focus,
.header--nine .wf_navbar-cart-item .wf_navbar-cart-icon:focus {
    outline: 1px solid currentColor;
    outline-offset: 3px;
}

.header--nine .wf_navbar-wrapper .wf_navbar-menu .wf_navbar-right .shopire-wcwl-items-count,
.header--nine .wf_navbar-wrapper .wf_navbar-menu .wf_navbar-right .shopire-wcwl-items-count,
.header--nine .wf_navbar-wrapper .wf_navbar-menu .wf_navbar-right .cart_count {
    top: -12px;
    right: -10px;
    width: 2.1rem;
    height: 2.1rem;
    line-height: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.header--nine .wf_navbar-menu .wf_navbar-nav .wf_navbar-mainmenu>li>a {
    margin: 0 1.6rem;
}

.header--nine .wf_navbar-menu .wf_navbar-nav .wf_navbar-mainmenu>li:first-child>a {
    margin-left: 0;
}

.header--nine .wf_navbar-menu .wf_navbar-nav .wf_navbar-mainmenu>li>a {
    color: #fff;
}

.header--nine .wf_navbar-menu .wf_navbar-nav .wf_navbar-mainmenu>li.active>a,
.header--nine .wf_navbar-menu .wf_navbar-nav .wf_navbar-mainmenu>li.focus>a,
.header--nine .wf_navbar-menu .wf_navbar-nav .wf_navbar-mainmenu>li:hover>a {
    color: #fff;
}

.header--nine .wf_navbar-wrapper .wf_navbar-menu .wf_navbar-right .wf_navbar-cart-item:after,
.header--nine .wf_navbar-menu .wf_navbar-nav .wf_navbar-mainmenu>li:after {
    content: "";
    display: block;
    width: 100%;
    height: 1.7rem;
    position: absolute;
}

.header--nine .wf_navbar-nav .wf_navbar-mainmenu .dropdown-menu .menu-item-has-children:hover>a:after,
.header--nine .wf_navbar-nav .wf_navbar-mainmenu .menu-item-has-children:hover>a:after,
.header--nine .wf_navbar-nav .wf_navbar-mainmenu .dropdown-menu .menu-item-has-children.focus>a:after,
.header--nine .wf_navbar-nav .wf_navbar-mainmenu .menu-item-has-children.focus>a:after,
.header--nine .wf_navbar-nav .wf_navbar-mainmenu .dropdown-menu .menu-item-has-children.active>a:after,
.header--nine .wf_navbar-nav .wf_navbar-mainmenu .menu-item-has-children.active>a:after {
    border-color: currentColor;
}

.header--nine .wf_mobilenav .wf_navbar-cart-item a .cart_count {
    top: -11px;
    right: -9px;
}

.header--nine .header-search-form {
    background-color: transparent;
    padding-right: 0;
}

.header--nine .header-search-form .header-search-select-wrapper {
    float: left;
    border-radius: 5rem 0rem 0rem 5rem;
    overflow: hidden;
    border-right:none;
}

.header--nine .header-search-form input.header-search-input {
    float: right;
    border-radius: 0rem 5rem 5rem 0rem;
	padding-right:38px;
}

.header--nine .header-search-form input.header-search-input:focus {
    border: none;
    outline-offset: -2px;
    outline: 1px solid;
}

.header--eight .header-search-form .header-search-select {
    border-right: none;
    min-height: 4rem;
    height: 4rem;
}

.header--nine .header-search-form .header-search-button {
    width: 3.8rem;
    height: 3.8rem;
    top: 2px;
    right: 3px;
    border-radius: 5rem;
}

.header--nine .header-search-form .wf_search-field {
    border-radius: 5rem;
}

.header--nine .header-search-form .search-wrapper svg {
    left: 88%;
}

@media (min-width: 62em) {
    .header--nine .wf_header-widget .widget:not(:last-child):after {
        height: 2.5rem;
        margin-top: 0.4rem;
        background: rgba(189, 189, 189, 0.4);
    }
}

/* One */

.menu__active-one .wf_navbar-nav .wf_navbar-mainmenu>li>a::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -2px;
    height: 0.2rem;
    width: 0;
    background: #fff;
    transition: all linear 0.3s;
}

.menu__active-one .wf_navbar-nav .wf_navbar-mainmenu>li.active>a::before,
.menu__active-one .wf_navbar-nav .wf_navbar-mainmenu>li.focus>a::before,
.menu__active-one .wf_navbar-nav .wf_navbar-mainmenu>li:hover>a::before {
    width: 1.6rem;
}

/* Slider Nine / Banner */

.wf-flex-row-reverse {
    flex-direction: row-reverse;
}

.wf_slider_banner {
    margin-top: 2.4rem;
}

.wf_slider_banner .last {
    display: none;
}

.wf_slider_banner .wf_owl_carousel,
.wf_slider_banner .wf_slider-item,
.wf_slider_banner .wf_slider-innercell,
.wf_slider_banner .wf_slider-item>img {
    max-height: 51rem;
    min-height: 51rem;
}

.wf_slider_banner .wf_slider-content {
    padding: 1.2rem;
    margin-bottom: 3rem;
}

.wf_slider_banner .wf_slider-content .title {
    font-size: 3.8rem;
}

.wf_slider_banner .wf_slider-content .subtitle {
    color: #fff;
    font-size: 1.8rem;
}

.banner-wrapper {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 2.4rem;
}

.wf_slider--thirteen {
    overflow: visible;
}

.wf_slider--thirteen .owl-theme.owl-carousel .owl-dots {
    --wf-main-color: #fff;
}

.wf_slider--thirteen .owl-theme.owl-carousel .owl-dots .owl-dot span {
    border-radius: 50%;
}

.wf_slider--thirteen .banner-wrapper .banner-wrapper-item,
.wf_slider--thirteen .wf_owl_carousel {
    border-radius: 12px;
    overflow: hidden;
}

.wf_slider--thirteen .banner-wrapper {
    grid-template-columns: auto;
}

.wf_slider--thirteen .product-categories .product-categories-btn {
    padding: 0;
    color: var(--wf-secondary-color);
    background: transparent;
    margin-bottom: 16px;
    font-size: 1.6rem;
}

.wf_slider--thirteen .product-categories .product-categories-btn::after {
    top: 33%;
    right: 0;
    border-color: currentColor;
}

.wf_slider--thirteen .product-categories {
    z-index: 2;
}

.wf_slider--thirteen .product-categories.active {
    background-color: #fff;
    border: 1px solid rgba(189, 189, 189, 0.2);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .05);
    padding: 30px;
}

.wf_slider--thirteen .product-categories .wf_navbar-nav {
    position: relative;
    top: 0;
}

.wf_slider--thirteen .product-categories .wf_navbar-nav .wf_navbar-mainmenu .dropdown-menu:before {
    display: none;
}

.wf_slider--thirteen .product-categories .wf_navbar-nav .wf_navbar-mainmenu>li a {
    color: var(--wf-secondary-color);
    padding: 12px 0;
    line-height: 1.4;
    border-bottom-color: rgba(189, 189, 189, 0.3);
}

.wf_slider--thirteen .product-categories .wf_navbar-nav .wf_navbar-mainmenu>li:first-child a {
    padding-top: 0;
}

.wf_slider--thirteen .product-categories .product-categories-more-btn {
    padding: 0;
    margin-top: 12px;
    background: transparent;
    color: var(--wf-secondary-color);
}

.wf_slider--thirteen .product-categories .product-categories-more-btn i {
    font-size: 1.6rem;
    min-width: 1.6rem;
    min-height: 1.6rem;
    vertical-align: -1px;
}

.banner-wrapper .banner-wrapper-item .wf-image,
.banner-wrapper .banner-wrapper-item .wf-image a,
.banner-wrapper .banner-wrapper-item .wf-image img {
    height: 100%;
}

.banner-wrapper .banner-wrapper-item .wf-image img {
    object-fit: cover;
}

.banner-wrapper .banner-wrapper-item,
.wf-image {
    position: relative;
    overflow: hidden;
}

.banner-wrapper .banner-wrapper-item .wf-image a,
.banner-wrapper .banner-wrapper-item .wf-image img {
    width: 100%;
    display: inline-block;
}

.effect_1 .wf-image img {
    backface-visibility: hidden;
    filter: alpha(opacity = 100);
    transition: opacity 1s ease 0s, transform 1s ease 0s;
}

.effect_1:focus-within .wf-image img,
.effect_1:hover .wf-image img {
    filter: alpha(opacity = 80);
    transform: scale3d(1.1, 1.1, 1);
}

.banner-wrapper .banner-wrapper-item .banner-wrapper-inner {
    position: absolute;
    top: 0;
    left: 0;
    bottom: auto;
    transform: translateY(0);
    width: 100%;
    display: flex;
    text-align: left;
    justify-content: flex-start;
}

.banner-wrapper .banner-wrapper-item:nth-child(3) .banner-wrapper-inner {
    text-align: center;
    justify-content: center;
}

.banner-wrapper .banner-wrapper-item .banner-wrapper-inner .info {
    padding: 2.6rem 2.4rem 0;
}

.banner-wrapper .banner-wrapper-item .banner-wrapper-inner .info .subtitle {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 1.2rem;
}

.banner-wrapper .banner-wrapper-item .banner-wrapper-inner .info .title {
    font-size: 2.2rem;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 2.4rem;
}

.banner-wrapper .banner-wrapper-item .banner-wrapper-inner .info .title a {
    color: #fff;
    text-decoration: none;
}

@media (min-width: 48em) {
    .wf_slider_banner .wf_slider-content {
        padding: 1.2rem 2.8rem;
    }
}

.wf_slider--thirteen .banner-wrapper .banner-wrapper-item .wf-image img {
    height: 24.32rem;
}

/* Information */

.wf_information .widget.widget_contact {
    padding: 20px;
    background-color: rgba(189, 189, 189, 0.15);
    margin-top: 0;
    border-radius: 1rem;
    border: 1px solid rgba(189, 189, 189, 0.4);
    transition: 0.3s all;
}

.wf_information .wf-row > div .widget.widget_contact:hover,
.wf_information .wf-row > div .widget.widget_contact:focus-within {
    background-color: #fff;
    border-color: #fff;
    box-shadow: 0px 6px 26px 2px rgba(55, 54, 54, .1);
}

.wf_information .widget.widget_contact .contact__list {
    margin-top: 0;
}

.wf_information .widget.widget_contact i {
    width: 5rem;
    height: 5rem;
    font-size: 4rem;
    position: relative;
    margin-right: 2rem;
    color: var(--wf-secondary-color);
    transition: 0.3s all;
}

.wf_information .widget.widget_contact:hover i,
.wf_information .widget.widget_contact:focus-within i {
    color: var(--wf-main-color);
}

.wf_information .widget.widget_contact .contact__body .title {
    font-size: 1.8rem;
}

.wf_information .widget.widget_contact .contact__body .description {
    font-size: 1.4rem;
}

/* Grid Products */

.wc-block-grid__products .wc-block-components-product-button__button {
    border-radius: 0;
    text-decoration: none;
}

/* Woo style */

.woocommerce form .show-password-input,
.woocommerce-page form .show-password-input {
    top: 1.2em;
}

.wc-block-customer-account__link {
    text-decoration: none;
}

.wc-block-mini-cart__footer .wc-block-components-totals-item.wc-block-mini-cart__footer-subtotal .wc-block-components-totals-item__description {
    font-size: 1.2rem !important;
}