/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.7.1775650970
Updated: 2026-04-08 12:22:50

*/



/* =======================
   BREADCRUMB
======================= */

.breadcrumb-container {
    padding-left: 0 !important;
	margin-bottom: 48px !important;
}

.breadcrumb-container li:first-child > a > span {
    font-size: 0 !important;
    position: relative !important;
}

.breadcrumb-container li:first-child > a > span::before {
    content: "" !important;
    display: inline-block !important;
    width: 20px !important;
    height: 20px !important;
	margin-top: 4px !important;
    background: url('/wp-content/uploads/2026/04/breadcrumb_base.svg') no-repeat center !important;
    background-size: contain !important;
}

.breadcrumb-container .separator {
    font-size: 0 !important;
}

.breadcrumb-container .separator::before {
    content: "" !important;
    display: inline-block !important;
    width: 16px !important;
    height: 16px !important;
    background: url('/wp-content/uploads/2026/04/breadcrumb_chevron-right.svg') no-repeat center !important;
    background-size: contain !important;
    margin: 0 8px !important;
}


.breadcrumb-container ol {
	display: flex !important;
    flex-direction: row !important;
    align-content: center !important;
    justify-content: flex-start !important;
    align-items: center !important;
	padding: 0 !important;
}

.breadcrumb-container.theme1 li {
    margin: 0;
    padding: 0;
}

.breadcrumb-container.theme1 a {
    background: ;
    display: inline-block;
    margin: 0!important;
    padding: 0 !important;
    text-decoration: none;
	color: #2D3748 !important;
	font-size: 14px !important;
	font-weight: 700 !important;
}

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


.custom-cart-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f28c00;
    color: #fff;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 600;
    position: relative;
}

a.custom-cart-button:hover {
	text-decoration: none;
	color: #fff;
}

.custom-cart-button .cart-icon {
    display: flex;
    width: 20px;
    height: 20px;
}

.custom-cart-button svg {
    width: 18px;
    height: 18px;
}

.custom-cart-button .cart-count {
    position: absolute;
    top: -6px;
    right: -6px;

    background: #000;
    color: #fff;

    font-size: 12px;
    font-weight: 700;

    border-radius: 50%;
    min-width: 18px;
    height: 18px;

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

.custom-cart-button:hover {
    opacity: 0.9;
}

.cart-text {
    color: #fff !important;
}



/* ===================================
   CART - ADD TO CART AJAX, TOOLTIP
=================================== */

a.added_to_cart.wc-forward {
	 display: none !important; /*  zakážeme odkaz na košík u related atd. */
}

.cart-toast{
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;

    opacity: 0;
    transform: translateY(-10px);
    transition: all .5s ease;
}

.cart-toast.active{
    opacity: 1;
    transform: translateY(0);
}

.cart-toast-inner{
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;

    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    border: 1px solid #EAECF0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    min-width: 340px;
}

/* LEFT BLOCK */
.toast-left{
    display: flex;
    gap: 12px;
}

/* ICON */
.toast-icon{
    margin-top: 2px;
}

/* TEXT */
.toast-title{
    font-size: 14px;
    font-weight: 600;
    color: #101828;
}

.toast-sub{
    font-size: 13px;
    color: #667085;
    margin-top: 2px;
    line-height: 1.4;
}

/* CLOSE */
.toast-close{
    font-size: 18px;
    color: #98A2B3;
    cursor: pointer;
    line-height: 1;
}

.toast-close:hover{
    color: #344054;
}

/* PROGRESS */
.toast-progress{
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: #17B26A;

    transform: scaleX(1);
    transform-origin: left;

    animation: toast-progress 3s linear forwards;
}

@keyframes toast-progress{
    to{
        transform: scaleX(0);
    }
}

/* LOADING SPINNER */
.single_add_to_cart_button.is-loading{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0.8;
}

.spinner{
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;

    animation: spin 0.6s linear infinite;
}

@keyframes spin{
    to{
        transform: rotate(360deg);
    }
}

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

/* WRAPPER */
.custom-cart-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* HEADER */
.cart-header {
    text-align: center;
    margin-bottom: 40px;
}

.cart-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.cart-header p {
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* TABLE WRAP */
.custom-cart-table {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

/* HEAD */
.cart-head {
    display: grid;
    grid-template-columns: 1fr 180px 180px 60px;
    padding: 16px 20px;
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

/* ROW */
.custom-cart-row {
    display: grid;
    grid-template-columns: 1fr 180px 180px 60px;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.2s ease;
}

.custom-cart-row:last-child {
    border-bottom: none;
}

.custom-cart-row:hover {
    background: #fafafa;
}

/* ALIGNMENT */
.cart-head div:nth-child(2),
.cart-head div:nth-child(3),
.cart-head div:nth-child(4),
.custom-cart-row > div:nth-child(2),
.custom-cart-row > div:nth-child(3),
.custom-cart-row > div:nth-child(4) {
    text-align: center;
}

/* PRODUCT */
.cart-product {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cart-thumb img {
    width: 60px;
    height: auto;
}

.cart-info strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.cart-info span {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
}

/* QTY */
.cart-qty {
    display: flex;
    justify-content: center;
}

.qty-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-box input {
    width: 60px;
    height: 36px;
    padding: 6px;
    text-align: center;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
}

.unit {
    font-size: 14px;
    color: #6b7280;
}

/* STOCK BADGE */
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
}

.in-stock {
    background: #ECFDF3;
    color: #17B26A;
}

.out-stock {
    background: #FFF4E5;
    color: #F79009;
}

/* REMOVE */
.cart-remove {
    display: flex;
    justify-content: center;
}

.cart-remove a {
    text-decoration: none;
    font-size: 18px;
    opacity: 1;
    transition: opacity 0.2s;
}

.cart-remove a:hover {
    opacity: 1;
}

/* CTA */
.cart-cta {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
}

.btn-primary {
    background: #5AAEC4;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.2s;
}

.btn-primary:hover {
    opacity: 0.9;
}

.custom-cart-row.loading {
    opacity: 0.5;
    pointer-events: none;
}

.custom-cart-row {
    position: relative;
}

.custom-cart-row.loading::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(1px);
    z-index: 5;
}

.custom-cart-row.loading::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    margin: -14px 0 0 -14px;
    border: 3px solid #e5e7eb;
    border-top-color: #17B26A; /* tvoje zelená */
    border-radius: 50%;
    animation: cartSpin 0.7s linear infinite;
    z-index: 6;
}

@keyframes cartSpin {
    to {
        transform: rotate(360deg);
    }
}

a.btn-primary {
    color: #F18700 !important;
    border: 1px solid #F18700 !important;
    background-color: #FFF !important;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;

}

a.btn-primary:hover {
    color: #FFF !important;
    border: 1px solid #F18700 !important;
    background-color: #F18700 !important;
}

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

/* =========================
   WRAPPER
========================= */
.custom-checkout-page {
    max-width: 760px !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
}

/* =========================
   HEADER
========================= */
.cart-header {
    text-align: center !important;
    margin-bottom: 40px !important;
}

.cart-header h1 {
    font-size: 36px !important;
    margin-bottom: 10px !important;
}

.cart-header p {
    color: #6B7280 !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    line-height: 1.5 !important;
}

/* =========================
   FIELD WRAPPER
========================= */
.woocommerce-billing-fields__field-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 2px !important;
}

/* =========================
   2 SLOUPCE
========================= */
.form-row-first,
.form-row-last {
    width: calc(50% - 10px) !important;
}

/* =========================
   FULL WIDTH
========================= */
.form-row-wide,
.woocommerce-additional-fields {
    width: 100% !important;
}

/* =========================
   FIELD
========================= */
.woocommerce-checkout .form-row {
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
}

/* =========================
   LABEL
========================= */
.woocommerce-checkout label {
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 6px !important;
    color: #374151 !important;
}

/* =========================
   INPUT / SELECT / TEXTAREA
========================= */
.woocommerce-checkout input,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    width: 100% !important;
    height: 48px !important;
    padding: 12px 14px !important;
    border-radius: 10px !important;
    border: 1px solid #E5E7EB !important;
    background: #FFFFFF !important;
    font-size: 14px !important;
    color: #111827 !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
}

/* =========================
   TEXTAREA
========================= */

.woocommerce-additional-fields textarea {
    width: 100% !important;
    height: 140px !important;
    padding: 12px 14px !important;
    border-radius: 10px !important;
    border: 1px solid #E5E7EB !important;
    font-size: 14px !important;
}

/* =========================
   PLACEHOLDER
========================= */
.woocommerce-checkout input::placeholder,
.woocommerce-checkout textarea::placeholder {
    color: #9CA3AF !important;
}

/* =========================
   FOCUS
========================= */
.woocommerce-checkout input:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus {
    border-color: #5AAEC4 !important;
    box-shadow: 0 0 0 3px rgba(90, 174, 196, 0.15) !important;
    outline: none !important;
}

/* =========================
   ERROR
========================= */
.woocommerce-invalid input,
.woocommerce-invalid textarea,
.woocommerce-invalid select {
    border-color: #F04438 !important;
}

/* =========================
   CHECKBOX
========================= */
.woocommerce-checkout input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    border-radius: 10px !important;
    border: 1px solid #E5E7EB !important;
}

/* =========================
   TERMS
========================= */
.woocommerce-terms-and-conditions-wrapper {
    margin-top: 10px !important;
    font-size: 14px !important;
    color: #6B7280 !important;
}

/* =========================
   BUTTON WRAP
========================= */
.checkout-submit {
    margin-top: 30px !important;
}

/* =========================
   BUTTON
========================= */
#place_order {
    width: 100% !important;
    background: #F59E0B !important;
    color: #FFFFFF !important;
    padding: 16px !important;
    border-radius: 10px !important;
    border: none !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    box-shadow: none !important;
    transition: 0.2s !important;
}

/* HOVER */
#place_order:hover {
    opacity: 0.9 !important;
}

/* =========================
   REMOVE WOO DEFAULTS
========================= */
.woocommerce-checkout-review-order-table,
.woocommerce-shipping-fields,
#ship-to-different-address,
.woocommerce-form-coupon-toggle {
    display: none !important;
}

.custom-terms {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    color: #6B7280 !important;
}

.custom-terms input {
    width: 18px !important;
    height: 18px !important;
    border-radius: 10px !important;
    border: 1px solid #E5E7EB !important;
}

.custom-terms a {
    color: #2D3748 !important;
    text-decoration: underline !important;
}


#billing_country_field {
    display: none !important;
}

.custom-thankyou-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.thankyou-box {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
}

/* META */
.thankyou-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* PRODUCTS */
.thankyou-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid #E5E7EB;
}

.thankyou-row:first-child {
    border-top: none;
}


/* =======================
   CONTENT, PAGES
======================= */

.page-content p.wp-block-paragraph
{
    margin-top: 10px !important;
}

/* =======================
   JOBS
======================= */

/* WRAPPER */
.jobs-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* LIST */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* CARD */
.job-item {
    background: #ffffff;
    border: 1px solid #E9EAEB;
    border-radius: 8px;
    padding: 20px 24px;
    transition: all 0.2s ease;
}

.job-item:hover {
    border-color: #d1d5db;
}

/* TITLE */
.job-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #2D3748;
}

/* PEREX */
.job-perex {
    margin-top: 8px;
    font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
    color: #2D3748;
}

/* META */
.job-meta {
    margin-top: 10px;
    font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
    color: #2D3748;
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-icon {
    width: 14px;
    height: 14px;
}

/* TOGGLE */
.job-toggle {
    margin-top: 10px;
    font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
    color: #2D3748;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* =======================
   TOGGLE LOGIKA
======================= */

/* horní zmizí při otevření */
.job-item.active .job-toggle-open {
    display: none;
}

/* spodní default hidden */
.job-toggle-close {
    display: none;
}

/* spodní viditelný při otevření */
.job-item.active .job-toggle-close {
    display: inline-flex;
}

/* =======================
   ARROW
======================= */

/* default (nahoře) – dolů */
.job-toggle-open .arrow-icon {
    transform: rotate(0deg);
}

/* dole – nahoru */
.job-toggle-close .arrow-icon {
    transform: rotate(180deg);
}

/* společné */
.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
    display: inline-block;
    transform-origin: center;
}




/* BODY */
.job-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.job-item.active .job-body {
    max-height: 1000px;
    margin-top: 16px;
}

.job-item.active {
    background: #2D37480A;
}

.job-item {
    cursor: pointer;
}

/* CONTENT */
.job-content {
    cursor: default;
}

.job-content {
    font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
    color: #2D3748;
}

/* BUTTON */
.jobs-all-btn {
    text-align: center;
    margin-top: 24px;
}

.btn-all {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid #2D3748;
    border-radius: 8px;
    background: #fff;
    color: #2D3748;
    text-decoration: none;
    font-size: 16px;
	font-weight: 600;
    transition: all 0.2s ease;
}

.btn-all:hover {
    border-color: #9ca3af;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
    display: inline-block;
    transform-origin: center;
}



.job-item.active .arrow-icon {
    transform: rotate(180deg);
}

/* SCHOVAT PEREX PŘI OTEVŘENÍ */
.job-item.active .job-perex {
    display: none;
}



.job-perex {
    transition: opacity 0.2s ease;
}

.job-item.active .job-perex {
    opacity: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
}

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

.qty-tooltip-wrapper {
    position: relative;
}


/* 🔥 RESET WooCommerce bordelu */
.cart .quantity {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

/* 🔥 FORM LAYOUT */
.cart {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* 🔥 quantity + tooltip vedle sebe */
.cart .quantity {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.summary .quantity .qty {
  width: 350px !important;
}
/* tooltip wrapper */
.qty-tooltip-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* ikonka */
.qty-tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 19px;
    border-radius: 0;
    background: #eef1f5;
    font-weight: bold;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url('/wp-content/uploads/2026/04/question_mark_dark.svg') no-repeat center;
    background-size: contain;
}

/* 🔥 TOOLTIP */
.qty-tooltip-box {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 500px;
    max-width: 500px;
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);
    transition: 0.2s ease;
    z-index: 10;
}

.qty-tooltip-box::after {
    content: "";
    position: absolute;
      bottom: -8px;
    left: 28px; 
    width: 16px;
    height: 16px;
    background: #ffffff;
    transform: rotate(45deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* hover */
.qty-tooltip-wrapper:hover .qty-tooltip-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tooltip-note {
    margin-top: 16px;
    padding: 16px;

    background: #f3f4f6;
    border-radius: 10px;

    font-size: 14px;
    line-height: 1.5;
    color: #374151;
}

.tooltip-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tooltip-title::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url('/wp-content/uploads/2026/04/message-chat-square.svg') no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}


/* 🔥 quantity input */
.quantity .qty {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
}

.single_add_to_cart_button {
    display: inline-flex !important;
	align-content: center !important;
    align-items: center !important;
    margin-top: 16px !important;
    background: #F18700 !important;
    border-radius: 8px !important;
    padding: 16px 10px !important;
    font-weight: 600 !important;
    width: 100% !important;
    max-width: 385px !important;
}

.single_add_to_cart_button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.single_add_to_cart_button::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;

    background: url('/wp-content/uploads/2026/04/plus-circle.svg') no-repeat center;
    background-size: contain;
}

/* jistota proti overflow bugům */
.single-product div.product {
    overflow: visible;
}

/* tabs fix co máš */
.single-product .custom-tabs-wrapper {
    width: 100%;
    flex-basis: 100%;
    display: block;
    clear: both;
}

/* Tabs */

/* WRAPPER */
.custom-tabs-wrapper {
    width: 100%;
    margin-top: 50px;
    clear: both;
}

/* GRID */
.custom-tabs {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
}

/* 🔥 LEVÝ BOX (jen navigace!) */
.custom-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #FAFAFA;
    border: 1px solid #E9EAEB;
    border-radius: 10px;
    padding: 12px;
}

/* BUTTON */
.custom-tabs-nav button {
	padding: 8px 12px !important;
    text-align: left;
    border-radius: 0;
    border: 0;
    background: transparent !important;
    cursor: pointer !important;
    font-size: 15px !important;
    color: #181D27 !important;
    transition: all 0.2s ease;
}

/* HOVER */
.custom-tabs-nav button:hover {
    background: #fff;
	color: #181D27;
	padding: 8px 12px;
}

/* ACTIVE */
.custom-tabs-nav button.active {
	padding: 8px 12px !important;
    background: #ffffff !important;
	border-radius: 6px;
    border-color: #E9EAEB !important;
    border-style: solid;
    box-shadow: 0px 2px 2px 0px #00000040;
    color: #111;
    font-weight: 600;
    position: relative;
}


/* 🔥 PRAVÝ OBSAH – BEZ BOXU */
.custom-tabs-content {
    background: transparent;
}

/* PANEL */
.tab-panel {
    display: none;
    font-size: 15px;
    line-height: 1.75;
    color: #2b2f33;
}

.tab-panel.active {
    display: block;
}

/* TEXT */
.tab-panel p {
    margin-bottom: 16px;
}

/* ======================
   TABULKA FIX 
====================== */

/* wrapper jako na obrázku */
.product-table {
    border: 1px solid #E9EAEB;
    border-radius: 12px;
    overflow: hidden;
    display: block;
}

/* HEADER */
.product-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #F9FAFB;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
}

.product-table-header div {
    padding: 14px 16px;
    border-bottom: 1px solid #E9EAEB;
}

/* ROW místo flex -> GRID */
.product-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* buňky */
.product-table-row div {
    padding: 16px;
    border-bottom: 1px solid #E9EAEB;
}

/* poslední řádek */
.product-table-row:last-child div {
    border-bottom: none;
}

/* label */
.product-table-label {
    color: #374151;
}

/* value */
.product-table-value {
    color: #111827;
    font-weight: 500;
}

.product-table-value .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ECFDF3;
    border: 1px solid #ABEFC6;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #181D27;
}

/* SVG ikona */
.badge-icon {
    width: 14px;
    height: 14px;
    display: inline-block;
    background: url('/wp-content/uploads/2026/04/checkmark_green_icon-1.svg') no-repeat center;
    background-size: contain;
}

/* =======================
   REALTED PRODUCTS
======================= */
section.related.products {
	margin-top: 120px !important;
}

.single-product section.related.products ul.products {
    display: flex !important;
    gap: 24px;
    justify-content: center;
    flex-wrap: nowrap; 
}

/* každý produkt = 1/3 */
.single-product section.related.products ul.products li.product {
    width: calc(33.333% - 16px) !important;
    float: none !important;
    margin: 0 !important;
	padding: 24px !important;
	background: #FAFAFA !important;
}

.related.products h2 {
	font-size: 32px !important;
	font-weight: 600 !important;
	line-height: 42px !important;
	letter-spacing: -0.6px !important;
}

.related-subtext {
    margin-bottom: 48px;
    font-size: 18px;
    color: #2D3748;
}

.related.products h3.card-title, .related.products h3.card-title a {
	font-size: 18px !important;
	font-weight: 600 !important;
	line-height: 1.5!important;
	color: #181D27 !important;
}


/* =======================
   LOADING
======================= */

#products.loading {
  pointer-events: none;
  opacity: 0.6;
}

/* overlay */
#products.loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.7);
  z-index: 5;
}

/* spinner */
#products.loading::before {
  content: "";
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
  width: 40px;
  height: 40px;
  border: 3px solid #ddd;
  border-top: 3px solid #111;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  z-index: 6;
  will-change: transform;
  backface-visibility: hidden;
}

.loading {
  text-align: center;
  padding: 40px 0;
  font-size: 14px;
  color: #777;
}

.loader {
  width: 30px;
  height: 30px;
  border: 3px solid #ddd;
  border-top: 3px solid #333;
  border-radius: 50%;
  margin: 40px auto;
  animation: spin 0.8s linear infinite;
}


@keyframes spin {
  to { transform: rotate(360deg); }
}




/* =======================
   CATALOG LAYOUT 
======================= */


.skeleton-box {
  background: #e5e7eb;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.skeleton-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.skeleton-card {
  height: 100%;
}

.skeleton-card .card-image {
  height: 220px;
}

.skeleton-card .card-title {
  height: 20px;
  margin: 10px 0;
}

.skeleton-card .card-desc {
  height: 40px;
}

.skeleton-card .btn-detail,
.skeleton-card .btn-demand {
  height: 40px;
}

ul.products.skeleton {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

#catalog-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

#catalog-content {
  min-width: 0;
  width: 100%;
}

/* =======================
   STICKY SIDEBAR
======================= */

#catalog-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
    height: fit-content;
}

#wrapper-filters {
    position: relative;
}


#filters {
  position: relative;
  top: 20px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #fff;
  border: 0;
  border-radius: 12px;
  padding: 0 20px;
}

#btn-filters {
  padding: 20px 0;
}

/* Elementor fix */
.elementor,
.elementor-section,
.elementor-container,
.elementor-widget,
.elementor-widget-container {
  overflow: visible !important;
}

/* =======================
   SIDEBAR CONTENT
======================= */

#wrapper-filters h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

#filters h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 20px;
}

#filters h4:first-child {
  margin-top: 0;
}

#filters label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 0;
  cursor: pointer;
}

#filters input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;

    width: 20px;
    height: 20px;

    border: 2px solid #ededeb;
    border-radius: 6px;

    background-color: white;
    cursor: pointer;

    position: relative;
}

/* checked */
#filters input[type="checkbox"]:checked {
    background-color: #2D3748;
    border-color: #2D3748;
}

/* SVG fajfka */
#filters input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    top: 2px;
    left: 2px;
    background-image: url("/wp-content/uploads/2026/04/checkmark_white.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

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

#apply-filters,
#reset-filters {
  width: 100%;
  position: relative;
  padding: 12px 12px 12px 42px; 
  border-radius: 8px;
  cursor: pointer;
}

/* APPLY */
#apply-filters {
  margin-top: 15px;
  background: #1f2937;
  color: #fff;
  border: none;
  font-weight: 600;
}

#apply-filters:hover {
  background: #111827;
}

/* RESET */
#reset-filters {
  margin-top: 10px;
  background: #fff;
  color: #dc2626;
  border: 1px solid #fecaca;
  font-weight: 500;
  display: none; 
}

#reset-filters:hover {
  background: #fef2f2;
}

/* =======================
   SVG IKONY
======================= */

#apply-filters::before,
#reset-filters::before {
  content: "";
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
}

#apply-filters::before {
  background-image: url('/wp-content/uploads/2026/04/filter-funnel.svg');
}

#reset-filters::before {
  background-image: url('/wp-content/uploads/2026/04/x-close.svg');
}
/* =======================
   PRODUCTS WRAPPER
======================= */

#products-wrapper h1 {
  font-size: 24px;
  font-weight: 600;
}

#products-wrapper p {
  font-size: 18px;
  font-weight: 300;
}


#products-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 600px;
}

#products {
  flex: 1;
  width: 100%;
  display: block; 
}

#products > * {
  width: 100%;
}


/* =======================
   TOOLBAR
======================= */
#shop-toolbar {
  padding: 20px 0;
  display: flex;
  align-items: center;
  width: 100%;
}

#result-count {
  font-size: 14px;
  color: #6E768A;
  font-weight: 500;
}


#orderby {
    appearance: none;        
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;     
    background-image: url("/wp-content/uploads/2026/04/chevron-down.svg");
    background-repeat: no-repeat;
    background-position: right 10px center; /* posun 10px zprava */
    background-size: 20px; /* šířka 20px */
  padding: 8px 12px;
  margin-left: auto;
  border: 1px solid #ddd;
  color: #2D3748;
  font-size: 14px;
  cursor: pointer;
  max-width: 320px;
  border-radius: 8px;
}

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

#products {
  position: relative;
}

#products ul.products {
  width: 100%;
  min-width: 100%;
}

#products .products-inner {
  width: 100%;
  min-width: 100%;
}
 

#products ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* PRODUCT CARD */
#products ul.products li.product {
  background: #FAFAFA;
  border: 1px solid #E9EAEB;
  border-radius: 12px;
  padding: 16px;
  transition: 0.2s ease;
}

#products ul.products li.product:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}


/* =======================
   PRODUCT IMAGE ONLY
======================= */
.card-image {
  width: 100%;
  height: 220px;       
  min-height: 280px;  
  overflow: hidden;
  border-radius: 12px;
  background: #fff;  
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; /* 🔥 důležité */
}

/* TITLE */
.woocommerce-loop-product__title {
  font-size: 15px;
  font-weight: 600;
  margin: 10px 0;
}

/* PRICE OFF */
.price {
  display: none !important;
}

/* BUTTONS */
#products ul.products li.product .button {
  display: inline-block;
  width: calc(50% - 5px);
  border-radius: 8px;
  padding: 10px;
  font-size: 14px;
  text-align: center;
}

#products ul.products li.product .button + .button {
  margin-left: 10px;
}

/* DETAIL */
#products ul.products li.product a.button {
  background: #f3f4f6;
  color: #111;
}


/* =======================
   CUSTOM PRODUCT CARD
======================= */

.custom-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px;
  transition: 0.2s ease;
}

.custom-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* IMAGE */
.card-image {
  text-align: center;
}



/* BADGE */
.card-badge {
    min-height: 24px;
  display: inline-block;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  margin: 10px 0;
}

/* když není badge */
.card-badge:empty {
    visibility: hidden;
}

a.product-link {
    color: #2D3748 !important;
}

/* TITLE */
.card-title {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0;
  min-height: 35px;
}



/* DESC */
.card-desc {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 10px;
  min-height: 80px;
}

/* FEATURES */
.card-features {
    min-height: 70px;
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.card-features li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #374151;
}

/* BUTTONS */
.card-buttons {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  align-content: center;
  align-items: center;
}

.btn-detail {
  flex: 1;
  background: #e5e7eb;
  text-align: center;
  padding: 11px;
  border-radius: 10px;
  font-size: 12px;
  color: #111;
  text-decoration: none;
  max-width: 80px !important;
  align-content: center;
  width: 100%;
}

.btn-demand {
  flex: 1 !important;
  background: #F18700 !important;
  color: #fff !important;
  text-align: center !important;
  margin-top: 0 !important;
  padding: 11px;
  border-radius: 10px !important;
  font-size: 12px !important;
  text-decoration: none !important;
}

.related .products a.btn-demand.button.add_to_cart_button.ajax_add_to_cart {
  padding: 14px 16px !important;
}

a.btn-demand.custom-add-to-cart  {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.btn-demand:hover {
  background: #d97706;
}



.related .products a.btn-demand.button.add_to_cart_button.ajax_add_to_cart::before {
   content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url('/wp-content/uploads/2026/04/plus-circle.svg');
  background-size: contain;
  background-repeat: no-repeat;
}


.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.feature-icon {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* POPTÁVKA */
#products ul.products li.product a.add_to_cart_button,
#products ul.products li.product a.ajax_add_to_cart {
  background: #F18700;
  color: #fff;
	display: flex;
	gap: 10px;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#products ul.products li.product a.ajax_add_to_cart:hover {
  background: #d97706;
}

/* =======================
   LOAD MORE
======================= */
#load-more-wrap {
  margin-top: 40px;
  text-align: center;
}

#load-more {
  background: #fff;
  border: 1px solid #2D3748;
  color: #2D3748;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

#load-more:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

#load-more-wrap .loader {
  margin: 20px auto;
}

/* =======================
   PAGINATION
======================= */
/* ===== WRAPPER ===== */
#pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* HLAVNÍ KONTEJNER */
.pagination-wrap {
  display: flex;
  align-items: center;
  gap: 0;

  border: 1px solid #d1d5db;
  border-radius: 14px;
  overflow: hidden;

  background: transparent;
}



/* ===== PREV ===== */
.pagination-prev {
  border-right: 1px solid #e5e7eb;
}

.pagination-prev .prev {
  height: 44px;
  padding: 0 18px;

  display: flex;
  align-items: center;

  color: #2D3748;
  text-decoration: none;
}

/* ===== ČÍSLA ===== */
.pagination-pages {
  display: flex;
}

.pagination-pages .page-numbers {
  height: 44px;
  padding: 0 18px;

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

  color: #2D3748;
  text-decoration: none;

  border-right: 1px solid #e5e7eb;
}

/* poslední číslo bez pravého borderu */
.pagination-pages .page-numbers:last-child {
  border-right: none;
}

/* ACTIVE */
.pagination-pages .current {
  font-weight: 600;
}

/* ===== NEXT ===== */
.pagination-next {
  border-left: 1px solid #e5e7eb;
}

.pagination-next .next {
  height: 44px;
  padding: 0 18px;

  display: flex;
  align-items: center;

  color: #2D3748;
  text-decoration: none;
}

/* ===== INNER FLEX (text + SVG) ===== */
.pagination-next-inner,
.pagination-prev-inner {
  display: flex;
  align-items: center;
  gap: 8px;

  font-weight: 500;
}

/* ===== SVG ===== */
.pagination-icon {
  width: 16px;
  height: 16px;
  display: block;
}



/* =======================
   CATEGORY LAYOUT (BEZ SIDEBARU)
======================= */

#category-catalog-layout {
  display: block;
}

#category-catalog-layout #products-static ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

#category-catalog-layout #products-static ul.products li.product {
  max-width: 410px;
  margin: 0 auto;
  list-style: none;
}

/* POPTÁVKA */
#products-static ul.products li.product a.add_to_cart_button,
#products-static ul.products li.product a.ajax_add_to_cart {
  background: #F18700;
  color: #fff;
	display: flex;
	gap: 10px;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#products-static ul.products li.product a.ajax_add_to_cart:hover {
  background: #d97706;
}

/* =======================
   RESPONSIVE
======================= */

@media (min-width: 1200px) {
    .page-header .entry-title, .site-footer .footer-inner, .site-footer:not(.dynamic-footer), .site-header .header-inner, .site-header:not(.dynamic-header), body:not([class*=elementor-page-]) .site-main {
        max-width: 1280px !important;
    }
}

@media (min-width: 901px) {
.products.skeleton {
  width: 960px !important;
  max-width: 960px !important;
	} 
} 	

@media (max-width: 1024px) {
  #category-catalog-layout #products-static ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 900px) {
  #catalog-layout {
    grid-template-columns: 1fr;
  }

  #filters {
    position: relative;
    max-height: none;
  }
	
.products.skeleton {
  width: 600px !important;
  max-width: 600px !important;
	}

    #products-static ul.products li.product a.add_to_cart_button, #products-static ul.products li.product a.ajax_add_to_cart, #products ul.products li.product a.add_to_cart_button, #products ul.products li.product a.ajax_add_to_cart {
        width: 100% !important;
    }

    .forminator-ui .forminator-col {
        max-width: 100% !important;
        width: 100% !important;
    }
}


@media (max-width: 768px) {
    .cart-text {
        display: none !important;
    }
  #shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
	
.products.skeleton {
  width: 335px !important;
  max-width: 335px !important;
	} 

  #orderby {
    width: 100%;
  }
	
	.single-product section.related.products ul.products {
    flex-wrap: wrap;
  }
	
	 .single-product section.related.products ul.products li.product {
    width: 100% !important;
  }
	
.custom-tabs {
        grid-template-columns: 1fr;
}
	
.card-buttons {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-direction: column;
  }	
	
	#category-catalog-layout #products-static ul.products {
    grid-template-columns: 1fr;
		padding: 0 !important;
  }
	
.btn-detail {
  max-width: 100% !important;
  align-content: center;
  width: 100%;
}

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

    .custom-cart-table {
        border: none !important;
    }

        /* =========================
           TABLE → FLEX
        ========================= */
        .custom-cart-table {
            display: block !important;
            width: 100% !important;
        }

        .custom-cart-table thead {
            display: none !important;
        }

        .custom-cart-table tbody {
            display: flex !important;
            flex-direction: column !important;
            gap: 16px !important;
        }

    .cart-head {
        display: none !important;
    }

    .custom-cart-row {
        display: flex !important;
        flex-direction: column !important;
    }

        /* =========================
           ROW = CARD
        ========================= */
        .custom-cart-row {
            display: flex !important;
            flex-direction: column !important;
            gap: 12px !important;
            margin: 10px 0 !important;
            padding: 16px !important;
            border: 1px solid #E5E7EB !important;
            border-radius: 12px !important;
            background: #fff !important;
            width: 100% !important;
        }

        /* =========================
           PRODUCT BLOCK
        ========================= */
        .product-col {
            display: flex !important;
            gap: 12px !important;
            align-items: center !important;
        }

        .product-col img {
            width: 60px !important;
            height: 60px !important;
            object-fit: cover !important;
            border-radius: 8px !important;
        }

        .product-name {
            font-size: 14px !important;
            font-weight: 500 !important;
            line-height: 1.4 !important;
        }

        /* =========================
           BOTTOM ROW (qty + delete)
        ========================= */
        .cart-bottom {
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
        }

        /* =========================
           QUANTITY
        ========================= */
        .cart-quantity {
            display: flex !important;
            align-items: center !important;
            gap: 8px !important;
        }

        .cart-quantity input {
            width: 60px !important;
            height: 40px !important;
            text-align: center !important;
            border-radius: 8px !important;
        }

        /* =========================
           STOCK
        ========================= */
        .cart-stock {
            font-size: 13px !important;
        }

        .badge {
            font-size: 12px !important;
            padding: 4px 8px !important;
        }

        /* =========================
           REMOVE
        ========================= */
        .cart-remove img {
            width: 20px !important;
            height: 20px !important;
        }

        /* =========================
           BUTTON
        ========================= */
        .cart-actions .button {
            width: 100% !important;
        }

        .cart-cta {
            margin-top: 30px;
            display: flex;
            justify-content: center !important;
        }

        /* =========================
           STICKY CTA (optional)
        ========================= */
        .cart-actions {
            position: sticky !important;
            bottom: 0;
            background: #fff;
            padding: 12px;
            border-top: 1px solid #E5E7EB;
        }



}

@media (max-width: 600px) {
  #products ul.products {
    grid-template-columns: 1fr;
  }
}