:root {
    --font-primary: "Roboto", sans-serif;
    --font-secondary: "Source Sans 3", sans-serif;
    --color-primary: #3498db;
    --color-secondary: #F2994A;
    --color-text: #333;
    --color-blue: #C1DBEC;
    --color-blue-1: #2D9CDB;
    --color-Gray-6: #F2F2F2;
    --color-gray-1: #C4C4C4;
    --color-gray-2: #EFEFEF;
    --color-gray-3: #828282;
    --color-gray-4: #3D3D3D;
    --color-gray-5: #333;
    --color-sale: #EF3A70;
    --color-price: #F2994A;
    --color-new-order: #ECCF13;
    --color-completed-order: #76C148;
    --color-new: #ECCF13;
    --color-discount: #2D9CDB;
}

html,
body {
    position: relative;
    font-family: var(--font-primary);
    color: var(--color-text);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

*:focus {
    outline: none !important;
}

.tc {
    text-align: center;
}

.tl {
    text-align: left;
}

.tr {
    text-align: right;
}

.mt1 {
    margin-top: 1rem;
}

.mt2 {
    margin-top: 2rem;
}

.mt3 {
    margin-top: 3rem;
}

.mt4 {
    margin-top: 4rem;
}

.hidden {
    display: none !important;
}

input:-webkit-autofill,
select:-webkit-autofill {
    box-shadow: 0 0 0 1000px #f0f0f0 inset !important;
    /* změna pozadí */
    -webkit-text-fill-color: #333 !important;
    /* změna barvy textu */
    transition: background-color 5000s ease-in-out 0s;
}

input[type="checkbox"]:focus {
    outline: none;
    box-shadow: none;
}

.scrollbox {
    scrollbar-width: thin;
}

.scrollbox::-webkit-scrollbar {
    width: 8px;
}


.scrollbox::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.scrollbox::-webkit-scrollbar-thumb {
    background-color: var(--color-main);
    border-radius: 4px;
    border: 2px solid #f1f1f1;
}

.scrollbox::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-main);
}

.scrollbox::-webkit-scrollbar-thumb {
    background-color: var(--color-main);
    border-radius: 4px;
}


h1 {
    margin: 0;
    padding: 0;
    color: #000;
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

h2 {
    position: relative;
    margin: 0;
    padding: 0 0 2.85rem 0;
    color: #000;
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

h2.secondary {
    padding: 0 0 2.65rem 0;
    font-size: 1.75rem;
}

h2.small {
    padding: 0 0 1.5rem 0;
    font-size: 1rem;
}

h4 {
    color: #000;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5rem;
    /* 150% */
}

a.go {
    display: block;
    position: absolute;
    top: 0.75rem;
    right: 1.87rem;
    padding-right: 1.5rem;

    color: #000;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;

    background-repeat: no-repeat;
    background-position: center right;
    background-image: url(../svg/next.svg);
}

button.button {
    min-width: 12.375rem;
    height: 4rem;
    flex-shrink: 0;

    color: #FFF;
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;

    border: none;
    border-radius: 0.125rem;
    background: var(--color-secondary);
}

.button--mini {
    min-width: auto;
    height: 2rem;
    padding: 0 0.75rem;

    font-family: var(--font-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;

    border: none;
    border-radius: 0.125rem;
    background: var(--color-secondary);
    color: #FFF;

    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition: background-color 0.2s ease, color 0.2s ease;
}

.button--mini:hover {
    /*background: var(--color-blue-1);*/
}

.button--mini-secondary {
    background: #EDEDED;
    color: #333;
    border: 1px solid #DDD;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.button--mini-secondary:hover {
    border-color: var(--color-blue-1);
}

.button--mini-reset {
    background: transparent;
    color: #666;
    border: 1px solid #DDD;

    transition: border-color 0.2s ease, color 0.2s ease;
}

.button--mini-reset:hover {
    border-color: var(--color-blue-1);
}


button.add-to-cart {
    display: block;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    border: 1px solid #E08A3D;
    border-radius: 0.125rem;
    background: var(--color-secondary);
    background-repeat: no-repeat;
    background-size: 1.5rem 1.5rem;
    background-position: center center;
    background-image: url(../svg/cart.svg);
    font-size: 0;
    transition: border-color 0.2s ease, color 0.2s ease;
}

button.add-to-cart:hover {
    border-color: #FFD6B2;
}

button.add-to-cart.big {
    width: 12.375rem;
    height: 4rem;
    background-position: 0.62rem center;

    color: #FFF;
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

button.add-to-cart:disabled {
    border-color: var(--color-gray-3);
    background-color: var(--color-gray-3);
    cursor: not-allowed;
    opacity: 0.6;
}

button.variant-to-cart {
    display: block;
    height: 2rem;
    flex-shrink: 0;
    color: #FFF;
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    border: 1px solid #E08A3D;
    border-radius: 0.125rem;
    background: var(--color-secondary);
    transition: border-color 0.2s ease, color 0.2s ease;
}

button.order {
    width: 15rem;
    height: 4rem;
    background-position: right 0.62rem center;

    flex-shrink: 0;
    border: 1px solid #E08A3D;
    border-radius: 0.125rem;
    background: var(--color-secondary);
    background-repeat: no-repeat;
    background-size: 1.125rem 1.125rem;
    background-position: right 0.62rem center;
    color: #FFF;
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    transition: border-color 0.2s ease, color 0.2s ease;
}

button.order:hover {
    border-color: #FFD6B2;
}

button.order.next {
    border: 1px solid #E08A3D;
    background-image: url(../svg/arrow-next-w.svg);
    transition: border-color 0.2s ease, color 0.2s ease;
}

button.button-next {
    border: 1px solid #E08A3D;
    transition: border-color 0.2s ease, color 0.2s ease;
}

button.order.next:hover,
button.button-next:hover {
    border-color: #FFD6B2;
}

button.order.send {
    background-position: left 0.62rem center;
    background-image: url(../svg/send.svg);
}

button.load {
    width: 11.78519rem;
    height: 3rem;
    flex-shrink: 0;

    border-radius: 0.125rem;
    border: 1px solid #DDD;
    background-color: #FFF;
    color: #000;
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

button.save {
    background-color: var(--color-blue-1);
    background-repeat: no-repeat;
    background-size: 1.125rem 1.125rem;
    background-position: left 0.62rem center;
    background-image: url(../svg/save.svg);
}

.add-button {
    background: #f9fafb;
    border: 1px dashed #9ca3af;
    padding: 12px 20px;
    border-radius: 0.125rem;
    cursor: pointer;
    font-size: 15px;
    color: #374151;
    transition: background .2s, border-color .2s;
}

.add-button:hover {
    background: #f3f4f6;
    border-color: var(--color-blue-1);
}


/* 
// SECTION 99 FORMS
*/

.form-control:focus {
    box-shadow: none;
    border-color: var(--color-gray-1);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.form-row input[type="text"],
.form-row input[type="tel"],
.form-row input[type="password"] {
    position: relative;
    display: flex;
    height: 3rem;
    flex-shrink: 0;
    border: 1px solid #DDD;
    border-radius: 0.125rem;
    background: #FFF;

    color: #333;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.25rem;
    /* 125% */
}

.form-row textarea {
    border-radius: 0.125rem;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-row .col-lg-6 {
    flex: 0 0 calc(50% - 0.5rem);
}

.form-row input.email {
    padding-right: 1.5rem;
    background-repeat: no-repeat;
    background-size: 0.875rem 0.875rem;
    background-position: right 1rem center;
    background-image: url(../svg/user.svg);
}

.form-row input.pass {
    padding-right: 1.5rem;
    background-repeat: no-repeat;
    background-size: 0.875rem 0.875rem;
    background-position: right 1rem center;
    background-image: url(../svg/pass.svg);
}

.form-row input[disabled] {
    background-color: var(--color-Gray-6);
}

.form-check {
    display: flex;
}

.form-check>.form-check-label {
    display: flex;
    align-items: center;
    padding-left: 0.5rem;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.form-check-input {
    position: relative;
    border: none;
    background: none;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    border-radius: 0.125rem;
    /*border: 1px solid #DDD;*/
    background-color: #E0E0E0;
}

.form-check-input:checked {
    /*border: 1px solid var(--color-secondary);*/
    background: none;
}

.form-check-input:checked::before {
    content: "";
    display: block;
    position: absolute;
    width: 0.8rem;
    height: 0.8rem;
    top: calc(50% - 0.4rem);
    left: calc(50% - 0.4rem);
    flex-shrink: 0;
    border-radius: 0.125rem;
    background: var(--color-blue-1);
}

.form-check-input[type="radio"]:checked::before {
    border-radius: 50%;
}

.form-check-description {
    padding-top: 1rem;
    color: var(--color-gray-5);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-check-description p {
    color: var(--color-gray-5);
    margin: 0;
    padding: 0.5rem 0 0 0;
}

.form-check-description p strong {
    font-weight: 700;
}

.form-check-description p a {
    color: var(--color-blue-1);
    text-decoration: underline;
}

.form-check-label {
    color: #686868;
    font-style: normal;
    font-weight: 400;
}

.form-check-input:checked~.form-check-label {
    color: #000;
}

.form-select {
    position: relative;
    display: block;
    height: 3rem;
    flex-shrink: 0;
    border: 1px solid #DDD;
    border-radius: 0.125rem;
    background: #FFF;
    background-repeat: no-repeat;
    background-size: 1.25rem 1.25rem;
    background-position: right center;
    background-image: url(../svg/caret-down-b.svg);
}

.form-check-switch {
    display: flex;
    align-items: center;
    min-width: 3.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    border-radius: 0.125rem;
    border: 1px solid #DDD;
}

.form-check-switch input {
    display: none;
}

.form-check-switch>label {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.form-check-switch>label .checkmark {
    display: block;
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(50% - 2px);
    height: calc(100% - 4px);
    background-color: #E0E0E0;
    border-radius: 0.125rem;
    z-index: 2;
}

.form-check-switch>label>input:checked+.checkmark {
    left: 50%;
    background-color: var(--color-blue-1);
}

.form-check-switch>label::after {
    content: "ne";
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
    padding: 2px;
    text-align: center;
    color: #686868;
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 0.875rem;
    z-index: 1;
}

.form-check-switch>label::before {
    content: "ano";
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
    padding: 2px;
    text-align: center;
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 0.875rem;
    z-index: 1;
}

.form-label {
    display: inline-block;
    width: 100%;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: space-between;
    color: var(--color-gray-5);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem;
}

.form-label.required::after {
    content: " *";
    color: #EF3A70;
    font-size: 1rem;
    font-weight: 700;
    margin-left: 0.25rem;
}

.form-label a {
    color: inherit;
    font-weight: 400;
}

.form-row label.alone {
    margin: 0;
    padding: 0 1.31rem 0 0;
    color: #000;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.25rem;
}

.form-help {
    color: var(--color-gray-5);
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem;
    /* 153.846% */
}

.form-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 767.98px) {
    .form-check .form-check-input {
        margin-left: 0;
    }
}

/* !SECTION */

/* 
// SECTION HEADER
*/
header {
    position: fixed;
    display: flex;
    align-items: center;
    width: 100%;
    height: 6.25rem;
    flex-shrink: 0;
    background: #FFF;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.10);
    z-index: 1000;
    transition: height 0.3s ease;
}

header.shrink {
    height: 3.5rem;
}

header .logo {
    display: flex;
    align-items: center;
    min-width: 3.75rem;
    height: 100%;
    flex-shrink: 0;
    padding: 0.63rem 0.87rem;
}

header .logo>a {
    display: block;
    width: 10rem;
    height: auto;
    aspect-ratio: 111/40;
    font-size: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/logo.png);
    transition: all 0.3s ease;
}

header.shrink .logo>a {
    width: 3.75rem;
    height: 90%;
}


header .search {
    flex-shrink: 1;
    flex-grow: 1;
    max-width: 42rem;
}

header .search .search-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 2.6875rem;
    border-radius: 0.125rem;
    background: var(--color-Gray-6);
}

header .search .input-search {
    display: block;
    width: 100%;
    height: 100%;
    padding-left: 1rem;
    padding-right: 2.25rem;
    border: none;
    background: none;
}

header .search .button-search {
    position: absolute;
    top: calc(50% - 0.625rem);
    right: 0.69rem;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    font-size: 0;
    border: 0;
    background: none;
    background-size: contain;
    background-image: url(../svg/search.svg);
    background-repeat: no-repeat;
}

header #search-results {
    display: none;
    position: absolute;
    top: 2.6875rem;
    width: 100%;
    max-height: 80vh;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 1rem 1rem 3.5rem 1rem;

    background: #FFF;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.10);
    z-index: 1000;
    transition: height 0.3s ease;
}

header #search-results .items {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: .5rem;
}

header #search-results .items>div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 0.25rem;
}

header #search-results .items>div>div a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

header #search-results .items>div:hover {
    background: rgba(0, 0, 0, 0.03);
    transition: background 0.2s ease;
}

header #search-results .items>div:hover>div a {
    color: var(--color-blue-1);
}

header #search-results .items>div>div:first-child {
    flex-shrink: 0;
    width: 4rem;
}

header #search-results .items>div>div:first-child img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

header #search-results .items>div>div:nth-child(2) {
    padding-left: 1rem;
    padding-right: 1rem;
    flex-grow: 1;
}

header #search-results .items>div>div:last-child {
    text-align: right;
    color: #000;
    font-family: var(--font-secondary);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

header #search-results .show-results {
    display: flex;
    justify-content: center;
    padding-top: 1.5rem
}

header #search-results .meta-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-bottom: 1rem;
}

header #search-results .meta-categories>a {
    display: inline-block;
    padding: 0.5rem;
    flex-shrink: 0;
    border-radius: 0.125rem;
    border: 1px solid #DDD;

    color: #000;
    font-family: var(--font-secondary);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;

    transition: all 0.3s ease;
}

header #search-results .meta-categories>a:hover {
    border-color: var(--color-blue-1);
    color: var(--color-blue-1);
}

header #search-results .show-results {
    border-top: 1px solid var(--color-Gray-6);
}

header .tools {
    display: flex;
    height: 100%;
    position: relative;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
    padding: 0 1rem;
}

header .tools-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

header .logged-user {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    font-size: 0.8125rem;
    font-style: normal;
    line-height: normal;
    color: var(--color-gray-3);
}

header .logged-user span {
    font-weight: 700;
}

header .logged-user a {
    color: inherit;
    text-decoration: none;
}

header.shrink .logged-user {
    display: none;
}

header a.tool {
    position: relative;
    display: inline-block;
    padding-left: 1.62rem;
    color: #000;
    font-family: var(--font-secondary);
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    transition: color .25s ease;
}

header a.tool:hover {
    color: var(--color-primary)
}

header a.tool::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 0.625rem);
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-size: contain;
}

header a.tool.orders::before {
    background-image: url(../svg/tool-orders.svg);
}

header a.tool.favorites::before {
    background-image: url(../svg/tool-favorite.svg);
}

header a.tool.settings::before {
    background-image: url(../svg/tool-settings.svg);
}

header a.tool.logout::before {
    background-image: url(../svg/tool-logout.svg);
}

header .minicart {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: center;
    width: 11.3125rem;
    height: 100%;
    background-color: var(--color-secondary);
    background-repeat: no-repeat;
    background-image: url(../svg/minicart.svg);
    background-size: 2.25rem 2.25rem;
    background-position: 0.49rem center;
    color: #FFF;
}

header .minicart>a {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: center;
    width: 11.3125rem;
    height: 100%;
    padding: 0 1rem;
    text-decoration: none;
    color: inherit;
}

header .minicart .total,
header .minicart .total #minicart-total {
    width: 100%;
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    text-align: right;
}

header .minicart .cart-amount {
    width: 100%;
    font-family: var(--font-secondary);
    font-size: 1rem;
    text-align: right;
}

header .minicart span {
    font-family: var(--font-primary);
    font-size: 0.875rem;
}

header.shrink .minicart .total,
header .minicart .cart-amount {
    line-height: 1rem;
}

main {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 7.25rem);
    padding: 7.81rem 1rem 3.56rem 1rem;
    background-color: var(--color-blue);
}

main .container-xl {
    display: flex;
    flex-direction: column;
    flex: 1;
}

@media (max-width: 767.98px) {

    main {
        padding: 7.25rem 1rem 3.56rem 1rem;
    }

    main .container-xl {
        padding: 0;
    }

    header {
        height: 4.75rem;
    }

    header .logo {
        display: flex;
        align-items: center;
    }

    header .logo>a {
        width: 3.75rem;
        height: 90%;
        background-position: center center;
    }

    header .search {
        flex-shrink: unset;
        min-width: unset;
        width: 2.63rem;
    }

    header .search.active {
        width: unset;
        min-width: calc(100vw - 6.25rem);
    }

    header .search .search-box {
        width: 100%;
        height: 2.6875rem;
        padding-left: 0;
    }

    header .search .input-search {
        width: 100%;
    }

    header .tools-links>a.login {
        font-size: inherit !important;
    }

    header .logged-user {
        display: none;
    }

    header .minicart {
        width: 3.75rem;
        height: 100%;
        padding: 0;
        background-size: 2.25rem 2.25rem;
        background-position: center center;
    }

    header .minicart a {
        margin: 0;
        padding: 0;
    }

    header .minicart a>div {
        display: none;
        width: 100%;
        padding: 0;
        margin: 0;
    }
}

@media (max-width: 1439.98px) {
    header .tools-links>a {
        font-size: 0;
    }
}

/* !SECTION */

/* 
// SECTION FOOTER
*/

footer {
    z-index: 9000;
    padding: 7rem 1rem 3.82rem 1rem;
    background-color: #FDFDFD;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left bottom;
    background-image: url(../img/footer-bg.png);
}

footer h2 {
    font-size: 1.5rem;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer ul li {
    margin: 0;
    padding: 0;
}

footer ul li a {
    color: #000;
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.25rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: var(--color-blue-1);
}

footer .footer-info {
    display: flex;
    justify-content: space-between;
    padding-top: 12rem;
    color: var(--color-gray-4);
}

footer .copyright {
    color: var(--color-gray-4);
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

footer .stats {
    display: flex;
    gap: 2.5rem;
}

footer .stats>div {
    position: relative;
    padding-left: 1.25rem;

    color: var(--color-gray-4);
    font-size: 0.625rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

footer .stats>div::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 0.5rem);
    display: block;
    width: 0.82238rem;
    height: 0.83519rem;
    flex-shrink: 0;

    background-repeat: no-repeat;
    background-size: contain;
}

footer .stats>div.stats-users::before {
    background-image: url(../svg/stats-user.svg);
}

footer .stats>div.stats-stock::before {
    background-image: url(../svg/stats-stock.svg);
}

footer .stats>div>span {
    color: var(--color-gray-5);
    font-size: 0.625rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

footer dl.contacts {
    margin: 0;
    padding: 0;
}

footer dl.contacts dt {
    position: relative;
    padding-left: 2.745rem;
    margin-top: 1.25rem;
}

footer dl.contacts dt:first-child {
    margin-top: 0;
}

footer dl.contacts dd {
    padding-top: 0.65rem;
    padding-left: 2.745rem;

    color: var(--color-gray-1);
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

footer dl.contacts a {
    color: var(--color-blue-1);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

footer dl.contacts dt::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 0.8125rem);
    display: block;
    width: 1.625rem;
    height: 1.625rem;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-size: contain;
}

footer dl.contacts dt.phone::before {
    background-image: url(../svg/contact-phone.svg);
}

footer dl.contacts dt.mail::before {
    background-image: url(../svg/contact-mail.svg);
}

@media (max-width: 767.98px) {
    footer {
        padding: 3rem 1rem 3.82rem 1rem;
    }

    footer {
        background-position: center bottom;
        background-image: url(../img/footer-bg.png);
    }

    footer h2 {
        margin: 0;
        padding: 0 0 1.5rem 0;
        font-size: 1.25rem;
    }

    footer ul {
        margin-bottom: 2rem;
    }

    footer .footer-info {
        flex-direction: column;
        gap: 2rem;
        padding-top: 3.5rem;
    }

    footer .copyright {
        text-align: center;
    }

    footer .stats {
        justify-content: center;
    }
}

/* !SECTION */

/* 
// SECTION 01. CONTENT
*/
.panels {
    display: flex;
    flex-direction: row;
    gap: 0.39rem;
    flex: 1;
    width: 100%;
    height: 100%;
}

.panel {
    border-radius: 0.125rem;
    background: #FFF;
}

.panel.panel-menu {
    width: 19.25rem;
    /*max-height: calc(100vh - 6rem);*/
    /*max-height: calc(90vh);*/
    flex-shrink: 0;
    padding: 0 0.81rem 4rem 0.81rem;
    overflow-y: hidden;
    /* ← umožní scroll */
    -webkit-overflow-scrolling: touch;
    /* ← plynulý scroll na mobilech */
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.panel.panel-content {
    flex-grow: 1;
}

.panel.closed {
    display: none;
}

.menu-toggle {
    position: fixed;
    top: 4rem;
    left: 0;
    z-index: 500;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: none;
    color: #fff;
    cursor: pointer;
    background-color: var(--color-secondary) !important;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

@media (max-width: 767.98px) {
    .panels {
        position: relative;
        flex-direction: column;
    }

    .menu-toggle {
        display: block;
    }
}

.menu-toggle svg {
    width: 100%;
    height: 100%;
}

.menu-toggle .line {
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
}

/* Otevřený stav – hamburger → X */
.menu-toggle.open .line1 {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle.open .line2 {
    opacity: 0;
}

.menu-toggle.open .line3 {
    transform: translateY(-4px) rotate(-45deg);
}

.menu-toggle .box {
    transition: stroke 0.3s ease;
    rx: 2;
    ry: 2;
}

@media (max-width: 767.98px) {
    .panel.panel-menu {
        position: fixed;
        top: 6rem;
        left: 0;
        width: 16rem;
        height: calc(100vh - 6rem);
        /* ← TOTO JE KLÍČOVÉ */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: #fff;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 300;
    }


    .panel-menu.open {
        transform: translateX(0);
    }

    /* Obsah přes celou šířku */
    .panel.panel-content {
        width: 100%;
    }

    /* Overlay */
    .menu-overlay,
    .search-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 600;
    }

    .menu-overlay {
        z-index: 300;
    }

    .menu-overlay.active,
    .search-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    /* Tlačítko pro otevření menu */
    .menu-toggle {
        display: block;
        width: 2rem;
        height: 2rem;
        margin: 1rem;
        background: url('../svg/hamburger.svg') center/contain no-repeat;
        cursor: pointer;
    }
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
        position: fixed;
        top: 7.81rem;
        right: 0;
        z-index: 600;
    }

    /* Při shrinku posuneme sticky top */
    header.shrink~main .panel.panel-menu {
        top: 5rem;
        /* výška malého headeru */
    }

    /* Otevřené menu */
    .panel-menu.open {
        top: 3.5rem;
    }

    .panel-menu~.panel-content {
        margin-left: 0;
        transition: margin-left 0.3s ease;
    }
}



/* 
// SECTION 01.1 MENU
*/
.menu {
    display: flex;
    overflow-x: hidden;
}

.menu nav {
    flex-shrink: 0;
    flex-basis: 17.630rem;
    margin: 0;
    padding: 0;
    display: block;
    width: 17.630rem;
    height: calc(100vh - 10rem);
    min-height: 800px;
    transition: transform 0.3s ease;
}

.menu.left nav {
    transform: translateX(-17.630rem);
}

.menu-switch {
    display: flex;
    gap: 0.12rem;
    align-items: flex-end;
    width: 100%;
    height: 4.81rem;
    position: sticky;
    top: 0;
    bottom: 4rem;
    z-index: 600;
    padding: 0;
    background-color: #fff !important;
}

.menu-switch a {
    display: flex;
    height: 2rem;
    flex-basis: calc(50% - 0.12rem);
    border-bottom: 0.25rem solid var(--color-Gray-6);
    color: #000;
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    background-color: #fff;
}

.menu-switch a.active {
    border-bottom: 0.25rem solid var(--color-blue-1);
}

.menu nav {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-Gray-6);
}

.menu nav.scrollbox {
    overflow-y: auto;
}

.menu {
    padding-top: 1.44rem;
}

.menu ul {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu ul li ul {
    display: none;
}

.menu ul li.opened>ul {
    display: block;
}

.menu ul li a {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    padding-left: 1.255rem;

    color: #3D3D3D;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu ul li a:hover {
    color: var(--color-blue-1)
}

.menu ul li a span.count {
    margin-left: .5rem;
    color: var(--color-gray-1);
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.menu ul li {
    position: relative;
}

.menu ul li.tree.opened>ul::before {
    content: "";
    position: absolute;
    left: calc(0.68288rem / 2);
    display: block;
    width: 1px;
    height: 100%;
    border-left: 1px solid var(--color-Gray-6);
}

.menu ul li.tree>span.open {
    position: absolute;
    left: 0;
    top: 0.25rem;
    display: block;
    width: 1rem;
    height: 1rem;

    font-size: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../svg/plus.svg);

    z-index: 100;
}

.menu ul li.tree.opened>span.open {
    background-image: url(../svg/minus.svg);
}

.menu ul li.tree.opened>ul>li:not(.tree) a::before {
    content: "";
    position: absolute;
    left: calc(0.68288rem / 2);
    display: block;
    width: 1px;
    height: 100%;
    border-left: 1px solid var(--color-Gray-6);
}

.menu ul li a.active {
    color: var(--color-blue-1);
}

.menu ul>li>ul>li {
    padding-left: 2.255rem;
}

.menu ul>li>ul>li.tree>span.open {
    left: 2.255rem;
}


@media (max-width: 767.98px) {
    .menu-switch {
        align-items: flex-end;
        width: 100%;
        height: 4rem;
        position: sticky;
        top: 0;
        bottom: 4rem;
        z-index: 600;
        padding: 0;
        background-color: #fff !important;
    }

    .menu-switch a {
        background-color: #fff;
    }

    .menu {
        margin-bottom: 8rem;
    }
}

.menu nav {
    position: relative;
}

.menu .menu-scroll-down {
    /*
    display: block;
    width: 100%;
    height: 3.5rem;
    background-color: red;
    
    pointer-events: auto;
    cursor: pointer;
    background: url('../svg/caret-down.svg') center no-repeat;
    */
}

/* !SECTION */

/* 
// SECTION 01.2 BREADCRUMBS
*/
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    height: 2rem;
    margin-bottom: 2rem;

    border-bottom: 1px solid var(--color-Gray-6);
}

.breadcrumbs>a {
    display: flex;
    height: 100%;
    align-items: center;

    padding-right: 1rem;
    border-right: 1px solid var(--color-Gray-6);

    color: #000;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
}

.breadcrumbs>a:last-child {
    border-right: none;
    color: #686868;
    text-decoration: none;
}

.breadcrumbs a.home {
    position: relative;
    top: 0;
    display: block;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    background-color: var(--color-secondary);
    border-radius: 0.125rem 0 0 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 0.75rem 0.75rem;
    background-image: url(../svg/home-w.svg);
    font-size: 0;
}

@media (max-width: 767.98px) {
    .breadcrumbs {
        flex-wrap: nowrap;
        /* důležité – vše do jednoho řádku */
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        height: 2rem;
        /* trochu vyšší pro lepší scrollování */
        padding: 0.5rem 0;
        /* volitelné – lepší scrollování */
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE/Edge */
    }

    .breadcrumbs::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari a Opera */
    }

    .breadcrumbs>a {
        white-space: nowrap;
        /* zabrání zalomení textu */
    }
}

/* !SECTION */

/* 
// SECTION 01.3 SLIDER
*/
/* SLIDER WRAPPER */
.slider {
    position: relative;
    height: 28rem;
    max-height: 31.25rem;
    overflow: hidden;
    padding: 0 1.87rem;
}

.slider .slide {
    position: absolute;
    top: 0;
    left: 1.87rem;
    width: calc(100% - 3.74rem);
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slider .slide.active {
    opacity: 1;
}

.slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 3.125rem;
    padding: 0 1.87rem;
    border-bottom: 1px solid var(--color-Gray-6);
}

.slider-controls a {
    position: relative;
    z-index: 200;
    display: block;
    width: 1.8125rem;
    height: 1.8125rem;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-size: contain;
    font-size: 0;
    transition: background .5s ease;
}

.slider-controls a.prev {
    background-image: url(../svg/arrow-prev.svg);
}

.slider-controls a.prev:hover {
    background-image: url(../svg/arrow-prev-a.svg);
}

.slider-controls a.next {
    background-image: url(../svg/arrow-next.svg);
}

.slider-controls a.next:hover {
    background-image: url(../svg/arrow-next-a.svg);
}

.slide-titles {
    display: flex;
    gap: 2rem;
    color: #000;
    font-size: 1rem;
    font-weight: 400;
}

.slide-titles>div {
    display: flex;
    align-items: center;
    height: 3rem;
    cursor: pointer;
}

.slide-titles>.active {
    font-weight: 700;
    border-bottom: 2px solid var(--color-blue-1);
}

@media (max-width: 767.98px) {
    .slider {
        max-width: 100%;
        height: 9.5rem;
        overflow-x: hidden;
    }

    .slider .slide {
        left: 0.69rem;
        width: calc(100% - 1.38rem);
    }

    .slide-titles {
        font-size: 0.75rem;
        gap: 1rem;
        overflow-x: auto;
        padding: 0 0.69rem;
    }

    .slider-controls {
        padding: 0 0.69rem;
    }

    .slider-controls a {
        width: 1.5rem;
        height: 1.5rem;
    }
}


/* !SECTION */

/* 
// SECTION 01.4 SECTION
*/
.section {
    display: block;
    position: relative;
    padding: 4rem 0 4rem 0;
    border-bottom: 1px solid var(--color-Gray-6);
}

.section.section-panels {
    display: flex;
    align-items: center;
}

.section.section-panels>div:first-child {
    width: 80%;
    border-right: 1px solid var(--color-Gray-6);
}

.section.section-panels>div:last-child {
    width: 20%;
    padding-right: 1.87rem;
}

.section.section-panels>div {
    display: block;
    width: 100%;
    height: 100%;
}

.section.section-panels .section-info a.go {
    position: relative;
    top: unset;
    right: unset;
    text-align: right;
}

@media (max-width: 575.98px) {
    .section.section-panels {
        flex-direction: column;
        gap: 2rem;
    }

    .section.section-panels>div:first-child {
        width: 100%;
        border-right: none;
    }

    .section.section-panels>div:last-child {
        width: 100%;
        padding-right: 0;
    }

    .section.section-panels .section-info a.go {
        display: block;
        position: relative;
        top: unset;
        right: unset;
        padding: 0;
        text-align: center;
        background-position: calc(100% - 2rem) center;
    }
}

@media (max-width: 767.98px) {
    .panel-content .section.active {
        display: block;
    }

    .panel-content .section h2 {
        font-size: 1.75rem;
    }

    .panel-content .section h2 a.go {
        display: block;
        position: relative;
        top: unset;
        right: unset;
        padding: 0;
        text-align: center;
        background-position: calc(100% - 2rem) center;

    }
}

/* !SECTION */

/* 
// SECTION 01.4.1 SECTION / categories
*/
.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1.37rem;
    padding: 0 1.87rem;
}

.categories>div {
    position: relative;
    flex-basis: calc(20% - 1.2rem);
    border-radius: 0.125rem;
    border: 3px solid #F2F2F2;
    transition: border-color 0.3s ease;
}

.categories>div:hover {
    border-color: var(--color-blue);
}

.categories>div>a {
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.categories>div img {
    width: 100%;
    object-fit: cover;
    border-radius: 0.125rem;
}

.categories h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 3rem;
    margin: 0;
    padding: 0.5rem;

    color: #000;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1rem;
    text-align: center;
}

.categories>div.sale {
    background-color: var(--color-sale);
    border: 3px solid var(--color-sale);
    color: #FFF;
}

.categories>div.sale a>span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    object-fit: contain;
    aspect-ratio: 16/9;
    color: #fff;
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}

.categories>div.sale h3 {
    color: #fff;
    text-shadow: none;
}

@media (max-width: 575.98px) {
    .categories {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .categories>div {
        border-width: 2px;
    }

    .categories h3 {
        font-size: 0.875rem;
    }
}



/* !SECTION */

/* 
// SECTION 01.4.2 SECTION / news
*/
.news {
    display: flex;
    padding: 0 1.87rem;
    gap: 1rem;
}

.news>div {
    flex-basis: calc(33%);
}

.news .news-item>img {
    width: 100%;
    height: 13.875rem;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.news .news-item>div {
    padding: 1rem 2rem;
    border-radius: 0.125rem;
    background: var(--color-Gray-6)
}

.news .text {
    color: #000;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.375rem;
    /* 157.143% */
}

@media (max-width: 575.98px) {
    .news {
        flex-direction: column;
        padding: 0 1rem;
        gap: 1rem;
    }

    .news>div {
        flex-basis: 100%;
    }

    .news .news-item>img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        object-fit: cover;
        border-radius: 0.25rem;
    }

    .news .news-item>div {
        padding: 0.75rem 1rem;
    }

    .news h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .news .text {
        font-size: 0.875rem;
        line-height: 1.4;
    }
}


/* !SECTION */

/* 
// SECTION 01.4.2 SECTION / brands
*/
.brands {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 80%;
    margin-left: 1.87rem;
}

.brands>div {
    flex: 0 0 calc(16.66666667% - 1rem);
    width: 16.66666667%;
    height: auto;
}

.brands>div img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 3/2;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.brands>div:hover img {
    filter: grayscale(0%);
}

@media (max-width: 575.98px) {
    .brands {
        width: 100%;
        margin-left: 0;
        padding: 0 1rem;
        gap: 0.75rem;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .brands>div {
        width: 100%;
        height: auto;
    }

    .brands>div img {
        aspect-ratio: 3/2;
        object-fit: contain;
    }
}


/* !SECTION */
/* 
// SECTION 01.4.2 SECTION / manufacturers
*/
.manfucaturers {
    padding: 2rem 1.87rem 2rem 1.87rem;
}

.manfucaturers h6 {
    font-size: 1.25rem;
    color: var(--color-blue-1) !important;
}

.manfucaturers a {
    color: var(--color-gray-5);
    transition: color 0.3s ease;
}

.manfucaturers a:hover {
    color: var(--color-blue-1);
}


/* !SECTION */
/* !SECTION */


/* 
// SECTION 02. PRODUCTS
*/
.container-xl-2 {
    max-width: 1900px;
}

.container-xl-wide {
    max-width: 1600px;
}

.products {
    display: flex;
    padding: 1.5rem 1.87rem 0 1.87rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.product {
    position: relative;
    flex-basis: calc(25% - 0.75rem);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-gray-2);
    transition: border-color 0.3s ease;
}

@media (min-width: 1400px) {
    .products .product {
        flex-basis: calc(20% - 0.8rem);
    }
}


@media (min-width: 2049px) {
    .products .product {
        flex-basis: calc((100% - (5 * 1rem)) / 6);
    }
}


@media (max-width: 1049.98px) {
    .products .product {
        flex-basis: calc((100% - (2 * 1rem)) / 3);
    }
}

@media (max-width: 891.98px) {
    .products .product {
        flex-basis: calc((100% - 1rem) / 2);
    }
}

/* one row */
@media (min-width: 2049px) {
    .products.products-single .product:nth-child(n+7) {
        display: none;
    }
}

@media (max-width: 891.98px) {
    .products.products-single .product:nth-child(n+5) {
        display: none;
    }
}

@media (min-width: 892px) and (max-width: 1063.98px) {
    .products.products-single .product:nth-child(n+4) {
        display: none;
    }
}

@media (min-width: 1064px) and (max-width: 1413.98px) {
    .products.products-single .product:nth-child(n+5) {
        display: none;
    }
}

@media (min-width: 1414px) and (max-width: 2015.98px) {
    .products.products-single .product:nth-child(n+6) {
        display: none;
    }
}


.product:hover {
    border-color: var(--color-blue-1);
}

.product .tags {
    position: absolute;
    top: 0.75rem;
}

.product .image {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    padding: 0.5rem;
    border-radius: 0.125rem;
    background-color: var(--color-Gray-6);
}

.product .image img {
    width: 100%;
    object-fit: contain;
    aspect-ratio: 1/1;
}

.product h3 {
    display: block;
    height: 2rem;
    overflow-y: hidden;
    margin: 0 0 0.69rem 0;
    padding: 0;
    color: #000;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1rem;
}

.product h3>a {
    display: block;
    color: #000;
    text-decoration: none;
}

.product .stock-buy {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product .buy {
    display: flex;
    align-items: center;
    gap: 0.31rem;
}

.code {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--color-gray-1);
}

.code>span {
    font-family: var(--font-primary);
    font-weight: 400;
}

.price {
    color: var(--color-price);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.price-wo-vat {
    color: #000;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.price-wo-vat>span {
    font-size: 0.8125rem;
    font-weight: 400;
}

.stock {
    color: #76C148;
    font-family: var(--font-secondary);
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.stock.out-of-stock {
    color: var(--color-gray-5);
}

.stock.out-of-stock.on-way {
    color: var(--color-secondary);
}

.amount {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.0625rem;
    height: 2rem;
    flex-shrink: 0;
    border-radius: 0.125rem;
    border: 1px solid #DDD;
}

.amount>input {
    display: block;
    flex: 1;
    width: 100%;
    height: 100%;
    padding-left: 2px;
    padding-right: 1.25rem;
    border: none;

    color: #000;
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: right;
    transition: background-color .5s ease;
}

.product-quantity:hover .amount>input {
    background-color: #FBFBFB !important;
}

.amount>a {
    position: absolute;
    right: 0;
    display: block;
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-size: 0.625rem 0.625rem;
    font-size: 0;
    cursor: pointer;
    user-select: none;
}

.amount>a.up {
    top: 0;
    background-position: top 2px right 2px;
    background-image: url(../svg/chevron-up.svg);
}

.amount>a.down {
    bottom: 0;
    background-position: bottom 2px right 2px;
    background-image: url(../svg/chevron-down.svg);
}

.amount>a.down[disabled] {
    background-image: url(../svg/chevron-down-mute.svg);
}

.availability {
    color: #76C148;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.availability.in-stock {
    color: #76C148;
}

.availability.out-of-stock {
    color: var(--color-gray-5);
}

.availability>span {
    font-family: var(--font-primary);
    font-weight: 400 !important;
}

@media (max-width: 575.98px) {
    .products {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 1rem;
    }

    .product {
        border-bottom: 1px solid var(--color-gray-2);
    }

    .product .image {
        aspect-ratio: 1/1;
    }

    .product h3 {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        /* max. počet řádků */
        -webkit-box-orient: vertical;
        overflow: hidden;

        height: 3.3rem;
        /* přesně pro 3 řádky při tvém line-height */
        line-height: 1.1rem;
    }

    .code {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }

    .price {
        font-size: 0.9375rem;
    }

    .stock-buy {
        display: flex;
        padding: 0;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .stock-buy>div {
        padding: 0;
        margin: 0;
    }

    .stock-buy .stock {
        width: 100%;
        display: block;
        text-align: left;
    }

    .stock-buy .buy {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .amount {
        width: 3.5rem;
        height: 3rem;
    }

    .amount>input {
        font-size: 0.75rem;
    }

    .product-add-to-cart button {
        width: 100%;
        height: 3rem;
        padding: 0.5rem;
        font-size: 0.8125rem;
        background-image: none;
        color: #fff;
    }
}


/* !SECTION */

/* 
// SECTION 03. CATALOG
*/
h1.catalog {
    padding: 0 1.87rem 1rem;
}

@media (max-width: 767.98px) {
    h1.catalog {
        padding: 0 1rem 1rem;
    }
}

h1.catalog>span {
    display: inline;
    color: #000;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#catalog-content {
    padding-bottom: 4rem;
}

.no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 4rem 0;
}

.no-products {
    margin: 0 1.87rem;
}

.products-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 1.87rem 4rem 1.87rem;
}

.products-pagination>div {
    flex: 1;
}

.products-pagination>div.load-more {
    display: flex;
    justify-content: center;
}

.custom-pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.69rem;
}

@media (max-width: 767.98px) {
    .products-pagination {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem 4rem 1rem;
    }

    .products-pagination>div {
        width: 100%;
    }

    .custom-pagination {
        justify-content: center;
    }
}

.custom-pagination .current-page {
    font-weight: 700;
    font-size: 1rem;
}

.custom-pagination .pages-separator {
    font-weight: 700;
}

.custom-pagination .prev,
.custom-pagination .next {
    display: none;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    border-radius: 0.125rem;
    border: 1px solid #DDD;
    background-repeat: no-repeat;
    background-size: 1.25rem 1.25rem;
    background-position: center center;

    font-size: 0;
}

.custom-pagination .prev.active,
.custom-pagination .next.active {
    display: block;
}

.custom-pagination .prev>a,
.custom-pagination .next>a {
    display: flex;
    flex: 1;
    width: 100%;
    height: 100%;
}

.custom-pagination .prev {
    background-image: url(../svg/arrow-prev.svg);
}

.custom-pagination .next {
    background-image: url(../svg/arrow-next.svg);
}

.custom-pagination>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    border-radius: 0.125rem;
    border: 1px solid #DDD;
    background-repeat: no-repeat;
    background-size: 1.25rem 1.25rem;
    background-position: center center;

    color: #000;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;

    transition: all 0.3s ease;
}

.custom-pagination>a:hover {
    border-color: var(--color-blue-1);
}

.custom-pagination>a.active {
    border-color: var(--color-secondary);
}

.custom-pagination {
    gap: 0.5rem;
    margin-top: 2rem;
}

.skeleton {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 0 1.87rem;
}

.skeleton-item {
    height: 260px;
    background: linear-gradient(90deg, #eee 25%, #f5f5f5 37%, #eee 63%);
    background-size: 400% 100%;
    border-radius: 8px;
    animation: skeleton-loading 1.4s ease infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 1rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #333;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
    /* ⭐ důležité */
}

#back-to-top.visible {
    opacity: 0.9 !important;
    pointer-events: auto;
}


.subcategories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0 1.87rem 1rem 1.87rem;
}

.subcategories>a {
    display: inline-block;
    padding: 0.5rem;
    flex-shrink: 0;
    border-radius: 0.125rem;
    border: 1px solid #DDD;

    color: #000;
    font-family: var(--font-secondary);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;

    transition: all 0.3s ease;
}

.subcategories>a:hover {
    border-color: var(--color-blue-1);
    color: var(--color-blue-1);
}

@media (max-width: 767.98px) {
    .subcategories {
        gap: 0.25rem;
        padding: 0 1rem 1rem 1rem;
    }

    .subcategories>a {
        padding: 0.25rem;
        font-size: 0.875rem;
    }
}

/* 
// SECTION 03.1 FILTERS
*/

#filters {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin: 0 1.87rem 0 1.87rem;
    padding: 1.75rem 1.87rem;
    border-radius: 0.125rem;
    background-color: var(--color-gray-2);
}

@media (max-width: 767.98px) {
    #filters {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
        margin: 0 1rem 0 1rem;
        padding: 1rem;
    }
}

#active-filters {
    padding: 0.5rem 0;
}

.active-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.87rem;
}

@media (max-width: 767.98px) {
    .active-filters {
        padding: 1rem 1rem;
    }
}

.active-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f4ff;
    color: #1a3d7c;
    padding: 4px 6px 4px 10px;
    border-radius: 0.125rem;
    font-size: 14px;
    border: 1px solid #d6e2ff;
}

.active-filter-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    color: #1a3d7c;
    transition: all 0.2s ease;
}

.active-filter-remove:hover {
    background: var(--color-blue-1);
    color: #fff;
}

.filter-block.scrollbox {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.tags {
    display: flex;
    gap: 0.37rem;
    padding-bottom: 0.69rem;
}

.tag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.6875rem;
    height: 1.6875rem;
    flex-shrink: 0;

    border-radius: 0.1875rem;
    background-color: var(--color-blue-1);
    color: #FFF;
    font-size: 0.625rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.tag.new {
    background: var(--color-new);
}

.tag.sale {
    background: var(--color-sale);
}

.tag.discount {
    background: var(--color-discount);
}

/* !SECTION */

/* 
// SECTION 03.2 SORTING
*/
.display {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    padding: 0 1.87rem 1rem;
    border-bottom: 1px solid var(--color-Gray-6);
}

.display>div {
    display: flex;
    align-items: center;
}

.display label {
    margin: 0;
    padding: 0 1.31rem 0 0;
    color: #000;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.25rem;
}

.display .display-count {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;

    color: #000;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem;
    text-align: right;
}

.display .display-count>span {
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .display {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0 1rem 1rem 1rem;
    }
}

/* !SECTION */
/* !SECTION */

/* 
// SECTION 04 DETAIL
*/
.detail {
    padding-top: 0.5rem;
    padding-bottom: 4rem;
}

.detail .product-meta {
    padding: 0 1.87rem;
}

@media (max-width: 767.98px) {
    .detail h1 {
        line-height: 2rem;
    }

    .detail .product-meta {
        padding: 0 1rem;
    }
}

.detail .product-meta-data {
    display: flex;
    gap: 1.63rem;
    padding: 1rem 0;

    color: var(--color-gray-5);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.detail .product-meta-data span {
    font-weight: 400;
}

.detail .product-meta-data a {
    color: inherit;
    text-decoration: none;
}

.detail .product-purchase-info {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.87rem 0;
    border-top: 1px solid var(--color-Gray-6);
    border-bottom: 1px solid var(--color-Gray-6);
}

@media (max-width: 767.98px) {
    .detail .product-purchase-info {
        display: flex;
        flex-wrap: wrap;
    }

    .detail .product-purchase-info .product-price {
        order: 2;
    }
}

.product-purchase-info-variants {
    padding: 1.87rem 0;
    border-top: 1px solid var(--color-Gray-6);
    border-bottom: 1px solid var(--color-Gray-6);
}

.product-purchase-info-variants h2 {
    margin: 0 0 1rem 0;
    padding: 0;
    font-size: 1rem;
}

.product-purchase-info-variants .product-add-to-cart {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding-top: 1.87rem;
}

.product-purchase-info-variants .variants {
    display: flex;
    gap: 0.62rem;
    flex-direction: column;
}

.product-purchase-info-variants .variants .variant {
    display: flex;
    width: 100%;
    height: 3.9375rem;
    gap: 0.38rem;
}

.product-purchase-info-variants .variants .variant-meta {
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0.69rem 1rem;
    border-radius: 0.125rem;
    border: 1px solid #DDD;
}

.product-purchase-info-variants .variants .variant.active>.variant-meta,
.product-purchase-info-variants .variants .variant.active .product-quantity>.amount {
    border-color: var(--color-secondary);
}

.product-purchase-info-variants .variants .variant-meta>div:first-child {
    flex-grow: 1;
}

.product-purchase-info-variants .variants .variant-meta>div:nth-child(2) {
    flex-grow: 1;
}

.product-purchase-info-variants .variants .variant-meta .availability {
    font-size: 0.8125rem;
}

.product-purchase-info-variants .variants .variant-title {
    color: #000;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.product-purchase-info-variants .variants .variant-code {
    padding: 0 0.69rem;
    color: var(--color-gray-1);
    font-family: Roboto;
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.product-purchase-info-variants .variants>div>div,
.product-purchase-info-variants .variants>div .amount input {
    transition: background-color .5s ease;
}

.product-purchase-info-variants .variants>div:hover>div,
.product-purchase-info-variants .variants>div:hover .amount input {
    background-color: #FBFBFB !important;
}

.product-purchase-info-variants h1 {
    margin-bottom: 2.5rem;
}

.detail .product-price {
    flex-grow: 1;
    text-align: right;
    line-height: 1rem;
}

.detail .product-price .price {
    font-size: 1.5rem;
}

.detail .product-price .price-sale {
    color: var(--color-sale);
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.detail .product-price del {
    color: #000;
    font-size: 0.875rem !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: normal !important;
    color: var(--color-gray-3);
}

.product-quantity .amount {
    width: 4.6875rem;
    height: 3.9375rem;
    flex-shrink: 0;
}

.product-quantity .amount>input {
    padding-right: 2.69rem;
}

.product-quantity .amount>a {
    right: 0;
    width: 1.875rem;
    height: 1.875rem;
    background-size: 0.625rem 0.625rem;
}

.product-quantity .amount>a.up {
    top: 0;
    background-position: right 0.37rem top 0.37rem;
}

.product-quantity .amount>a.down {
    bottom: 0;
    background-position: right 0.37rem bottom 0.37rem;
}

.detail .product-availability {
    padding: 1.87rem 0;
}

.detail .product-tools {
    display: flex;
    gap: 1.63rem;
    padding: 1.87rem 0;
    border-top: 1px solid var(--color-Gray-6);
}

.detail .product-tools a {
    position: relative;
    display: inline-block;
    padding-left: 2.125rem;
    color: var(--color-gray-5);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: underline;
}

.detail .product-tools a::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 0.8125rem);
    display: block;
    width: 1.625rem;
    height: 1.625rem;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.detail .product-tools a.watchdog::before {
    background-image: url(../svg/eye.svg);
}

.detail .product-tools a.watchdog.active::before {
    background-image: url(../svg/eye-active.svg);
}

.detail .product-tools a.favorite::before {
    background-size: 1.25rem 1.25rem;
    background-image: url(../svg/heart.svg);
}

.detail .product-tools a.favorite.active::before {
    background-image: url(../svg/heart-red.svg);
}

.detail .product-tools a.list::before {
    background-image: url(../svg/list.svg);
}

@media (max-width: 767.98px) {
    .product-purchase-info-variants .variants .variant {
        display: flex;
        width: 100%;
        height: 5.125rem;
        gap: 0.38rem;
    }

    .product-purchase-info-variants .variants .variant-meta {
        display: flex;
        flex-grow: 1;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        padding: .5rem;
        border-radius: 0.125rem;
        border: 1px solid #DDD;
    }

    .product-purchase-info-variants .variants .variant-meta .variant-code {
        order: 3;
        width: 100%;
        padding: 0;
    }

    .product-purchase-info-variants .product-quantity-add .amount {
        height: 5.125rem;
    }

    .detail .product-tools {
        width: 100%;
        display: flex;
        gap: 2rem;
    }

    .detail .product-tools a {
        font-size: 0;
    }
}

.detail .product-sale {
    margin-top: 1rem;
}

.product-sales {
    display: flex;
    flex-direction: column;
    gap: 1.37rem;
}

.product-sale {
    display: flex;
    flex-direction: row;
    gap: 0.69rem;
    align-items: center;
    width: 100%;
    padding: 1.25rem 4.5rem 1.25rem 1.5rem;
    border-radius: 0.375rem;
    background-color: var(--color-sale);
    background-repeat: no-repeat;
    background-position: right 0.37rem center;
    background-image: url(../svg/sale.svg);
}

.product-sale>div {
    padding-left: .69rem
}

.product-sale .sale-title {
    padding-bottom: 0.69rem;
    color: #FFF;
    font-family: var(--font-secondary);
    font-size: 1.5em;
    font-style: normal;
    font-weight: 700 !important;
    line-height: normal;
}

.product-sale .sale-text {
    color: #FFF;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1rem;
}

.product-sale .sale-text p {
    font-size: 1rem;
    margin: 0;
    padding: 0;
    line-height: 1.6rem;
}

.product-sale .sale-text p.sale-text-go {
    font-size: 0.875rem;
    margin: 0;
    padding: .69rem 0 0 0;
    line-height: 1rem;
}

.product-sale .sale-text .sale {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background-color: #fff;
    font-weight: 700;
    color: var(--color-gray-5)
}

.product-photos {
    display: flex;
}

.product-photos .strip {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    width: auto;
    max-height: 30rem;
    padding-right: 2rem;
    overflow: hidden;
}

.product-photos .strip a {
    display: block;
    width: 8rem;
    height: 5.9375rem;
    flex-shrink: 0;
    border-radius: 0.125rem;
    border: 1px solid var(--color-Gray-6);
}

.product-photos .strip a.active {
    border: 1px solid var(--color-blue-1)
}

.product-photos .strip a:hover {
    border: 1px solid var(--color-blue-1);
}

.product-photos .strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail .product-photos .photo {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    flex-grow: 1;
    overflow: hidden;
}

.product-photos .photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.photo-controls {
    position: absolute;
    z-index: 200;
    top: 12rem;
    display: block;
    width: 1.8125rem;
    height: 1.8125rem;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-size: contain;
    font-size: 0;
    transition: background .5s ease;
}

.photo-controls.prev {
    left: 0;
    background-image: url(../svg/arrow-prev.svg);
}

.photo-controls.prev:hover {
    background-image: url(../svg/arrow-prev-a.svg);
}

.photo-controls.next {
    right: 0;
    background-image: url(../svg/arrow-next.svg);
}

.photo-controls.next:hover {
    background-image: url(../svg/arrow-next-a.svg);
}

@media (max-width: 1024px) {
    .detail .product-photos {
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 1.87rem;
    }

    .product-photos .strip {
        flex-direction: row;
        order: 2;
        width: 100%;
        max-height: none;
        padding-right: 0;
        overflow-x: auto;
    }

    .product-photos .strip a {
        display: block;
        width: 4rem;
        height: 3rem;
        flex-shrink: 0;
        border-radius: 0.125rem;
        border: 1px solid var(--color-Gray-6);
    }

    .product-photos .photo {
        height: 15rem;
    }

    .product-photos .photo img {
        width: auto;
        max-height: 15rem;
    }
}

@media (max-width: 991.98px) {
    #detail {
        padding: 1.5rem 0;
    }

    .photo-controls {
        display: none;
    }

    .product-sale {
        padding: 1rem 2rem 1rem .31rem;
    }
}

@media (max-width: 1599.98px) {
    .product-photos .strip a {
        width: 6rem;
        height: 4.5rem;
    }
}
.product-info-menu {
    display: flex;
    gap: 1.63rem;
    margin-top: 4.5rem;
    padding: 0 1.87rem;
}

.product-info-menu a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.product-info-menu a > h2 {
    margin: 0;
    padding: 0;
    padding-bottom: 0.69rem;
    color: #000;
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/* Aktivní TAB */
.product-info-menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 0.25rem;
    background: var(--color-blue-1);
}

/* TAB PANES */
.tab-pane {
    display: none;
}

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

.product-info-tabs {
    padding: 4rem 1.87rem;
    border-top: 1px solid var(--color-Gray-6);
    border-bottom: 1px solid var(--color-Gray-6);
}

@media (max-width: 767.98px) {
    .product-info-menu {
        gap: 0.75rem;
        margin-top: 3.5rem;
        padding: 0 1rem;
    }

    .product-info-menu a > h2 {
        font-size: 1rem;
    }

    .product-info {
        padding: 3rem 1rem;
    }

    .product-info h2.secondary {
        margin-top: 2.5rem;
    }
}

@media (max-width: 1199.98px) {
    .product-info h2.secondary {
        margin-top: 2.5rem;
    }
}

.product-text {
    max-width: 100%;
    overflow-x: hidden !important;
}

.product-text h2 {
    display: block;
    margin: 0;
    padding: 0 0 1rem 0;
    font-size: 1.25rem;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

.product-text h3 {
    display: block;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

.product-text p {
    color: #000;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 185%;
}

.product-text a {
    color: var(--color-blue-1);
    text-decoration: none;
}

.product-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 1rem;
    color: #333;
}

.product-text thead th {
    text-align: left;
    font-weight: 600;
    padding: 0.75rem 0.5rem;
    border-bottom: 2px solid var(--color-blue-1);
}

.product-text tbody td {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--color-Gray-6);
    line-height: 1.6;
}

.product-text tbody tr:last-child td {
    border-bottom: none;
}

.product-text tbody tr:hover td {
    background: rgba(0, 0, 0, 0.03);
    transition: background 0.2s ease;
}

.product-text ul {
    list-style: none;
    padding-left: 1.2rem;
}

.product-text ul li {
    position: relative;
    margin: 0.4rem 0;
}

.product-text ul li::before {
    content: "";
    position: absolute;
    left: -1.2rem;
    top: 0.55rem;
    width: 0.45rem;
    height: 0.45rem;
    border: 2px solid var(--color-blue-1);
    border-radius: 50%;
}

.product-text caption {
    caption-side: top;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #222;
}

.params {
    width: 100%;
}

.params td {
    padding: 0.75rem 1.38rem;
}

.params td:first-child {
    font-weight: 700;
    border-radius: 0.125rem 0 0 0.125rem;
}

.params td:last-child {
    border-radius: 0 0.125rem 0.125rem 0;
}

.params tr:nth-child(even) td {
    background: var(--color-Gray-6);
}

.brand {
    display: flex;
    align-items: center;
    margin-top: 4rem;
}

.brand img {
    width: 5.375rem;
    height: 3.125rem;
    flex-shrink: 0;
    aspect-ratio: 43/25;
}

.brand a {
    color: var(--color-gray-5);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    text-decoration: underline;
}

.brand>div:nth-child(2) {
    padding-left: 0.69rem;
}

.similar-products {
    padding-top: 4rem;
}

.similar-products h2 {
    padding: 0 1.87rem;
}

@media (max-width: 767.98px) {
    .similar-products h2 {
        padding: 0 1rem;
    }
}

a.back-to-catalog {
    position: relative;
    display: flex;
    align-items: center;
    height: 3rem;
    margin-bottom: 1rem;
    padding-left: 3.5rem;
    color: var(--color-gray-5);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
}

a.back-to-catalog::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 1.5rem);
    display: block;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    font-size: 0;

    border: 1px solid #DDD;
    border-radius: 0.125rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 1.25rem 1.25rem;
    background-image: url(../svg/arrow-prev.svg);
}

.component-contact-form {
    padding: 0 1.87rem;
}

.component-contact-form .form-contact form.form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.component-contact-form .form-contact .form-row {
    display: block;
    width: 100%;
}

.component-contact-form .form-contact-box-success {
    display: none;
    padding: 1.25rem;
    border-radius: 0.125rem;
    background-color: var(--color-sale);
    color: #fff;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.component-contact-form .form-contact-box-error {
    display: none;
    padding: 1.25rem;
    margin-bottom: 2.5rem;
    border-radius: 0.125rem;
    background-color: var(--color-gray-3);
    color: #fff;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.component-contact-form .form-contact.error .form-contact-box-error {
    display: block;
}

.component-contact-form .form-contact.error .form-contact-box-error + form {
    display: none;
}

.component-contact-form .form-contact.success .form-contact-box-success {
    display: block;
}

.component-contact-form .form-contact.success form {
    display: none;
}


/* !SECTION */

/* 
// SECTION 05 CART
*/
.cart {
    padding: 0 1.87rem 4rem 1.87rem;
}

.order-steps {
    display: flex;
    align-items: center;
    gap: 1.63rem;
}

.order-steps>div {
    display: flex;
    align-items: center;
}

.order-steps>div>span {
    display: block;
    width: 0.75rem;
    height: 1.75rem;
    color: var(--color-gray-1);
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.order-steps>div.active>span {
    color: var(--color-secondary);
}

.order-steps h1 {
    display: inline;
    color: #000;
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.order-steps a {
    padding-left: 0.69rem;

    color: #000;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    text-decoration: none;
}

.order-steps div.active h1,
.order-steps div.active a {
    display: inline;
    color: #000;
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.order-steps>div.done>span {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    background-image: url(../svg/done.svg);
    font-size: 0;
}

.order-steps>div.active.done>span {
    background-image: url(../svg/done-a.svg);
}

table.cart-content {
    width: 100%;
    margin-top: 1.87rem;
    margin-bottom: 2.5rem;
}

table.cart-content thead,
table.cart-content tbody {
    border-bottom: 1px solid var(--color-Gray-6);
}

table.cart-content thead td {
    padding: 1rem 0.75rem;
    padding-bottom: 0.75rem;

    color: var(--color-gray-1);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

table.cart-content tbody tr td:first-child img {
    width: 5.3rem;
    height: 4rem;
    flex-shrink: 0;
    aspect-ratio: 85.33/64.00;
    object-fit: contain;
}

table.cart-content tbody td {
    padding: 1rem 0.75rem;
    vertical-align: middle;
    user-select: none;
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
}

table.cart-content tbody tr td:first-child {
    padding-left: 0.69rem;
}

table.cart-content tbody tr td:last-child {
    padding-right: 0;
}

table.cart-content tbody tr.row-ostatni {
    border-radius: 0.125rem;
    background: #FAFAFA;
}

table.cart-content a.remove {
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;

    font-size: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../svg/trash-can.svg);
}

table.cart-content tbody div.title a {
    color: #000;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
}

table.cart-content td>span.sale {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background-color: var(--color-sale);
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
}

.totals {
    display: flex;
    flex-direction: column;
    gap: 0.69rem;
    margin: 2rem 0;
}

.totals>div {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.totals>div>div:last-child {
    width: 8rem;
    text-align: right;
}

.totals .total-wo-vat {
    color: #000;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.totals .total {
    color: #000;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.order-button {
    display: flex;
    justify-content: flex-end;
}

#delivery-options {
    display: none;
}

#delivery-options.active {
    display: block;
}

@media (max-width: 768px) {

    /* Skrytí hlavičky tabulky */
    .cart-content thead {
        display: none;
    }

    /* Každý řádek jako karta */
    .cart-content tr {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        margin-bottom: 1rem;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        background: #fff;
    }

    .cart-content td {
        display: flex;
        width: 100%;
        padding: 0 !important;
        gap: 0 !important;
        border: none;
    }

    /* Obrázek produktu */
    .cart-content td:first-child {
        justify-content: center;
        padding-bottom: 0.5rem !important;
    }

    .cart-content td:first-child img {
        width: 90px;
        height: auto;
        object-fit: contain;
    }

    /* Název produktu */
    .cart-content td:nth-child(2) {
        flex-direction: column;
        gap: 0.25rem;
    }

    .cart-content .title a {
        font-size: 1rem;
        font-weight: 700;
        color: #000;
        text-decoration: none;
    }

    .cart-content .variant,
    .cart-content .code {
        font-size: 0.875rem;
        color: #555;
    }

    /* Sleva */
    .cart-content td:nth-child(3) {
        font-size: 0.9rem;
        color: var(--color-sale);
        font-weight: 700;
    }

    /* Množství */
    .cart-content td:nth-child(4) {
        justify-content: flex-start;
    }

    .product-quantity .amount {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .product-quantity input {
        width: 3rem;
        text-align: center;
    }

    /* Dostupnost */
    .cart-content td:nth-child(5) .availability {
        font-size: 0.9rem;
        font-weight: 700;
    }

    .availability span {
        font-weight: 400;
        margin-left: 0.25rem;
    }

    /* Ceny */
    .cart-content td:nth-child(6),
    .cart-content td:nth-child(7),
    .cart-content td:nth-child(8) {
        justify-content: space-between;
        font-size: 0.95rem;
    }

    .cart-content td:nth-child(6)::before {
        content: "Cena / ks:";
        font-weight: 700;
    }

    .cart-content td:nth-child(7)::before {
        content: "Celkem bez DPH:";
        font-weight: 700;
    }

    .cart-content td:nth-child(8)::before {
        content: "Celkem s DPH:";
        font-weight: 700;
    }

    /* Odstranění */
    .cart-content td:last-child {
        justify-content: flex-end;
    }

    .cart-content .remove {
        width: 1.5rem;
        height: 1.5rem;
        background-size: contain;
    }
}

@media (max-width: 768px) {

    .cart .row>.col {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0;
    }

    #delivery-options {
        margin-top: 1.5rem;
        padding: 1rem;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        background: #fff;
    }

    #delivery-options h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .totals {
        margin-top: 1.5rem;
        padding: 1rem;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        background: #fff;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .totals>div {
        display: flex;
        justify-content: space-between;
        font-size: 1rem;
    }

    .order-button {
        display: block;
        width: 100% !important;
        margin-top: 1.5rem;
        text-align: center;
    }

    .order-button button {
        flex-grow: 1;
        width: 100% !important;
    }
}


@media (max-width: 768px) {

    .order-steps {
        flex-direction: column;
        gap: 0.5rem;
    }

    .order-steps div {
        width: 100%;
        justify-content: flex-start;
    }

    .breadcrumbs {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .cart {
        margin-top: 1rem;
    }
}



/* !SECTION */

/* 
// SECTION 06 ORDER
*/
.order-delivery-payment {
    margin-top: 1.87rem;
}

.order-delivery-payment .form-check-label {
    margin: 0;
    padding: 0;
    color: var(--color-gray-5);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.order-delivery-payment .form-check {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 1rem 0.69rem 1rem 0;
    border-top: 1px solid var(--color-Gray-6);
}

.order-delivery-payment .form-check:last-child {
    border-bottom: 1px solid var(--color-Gray-6);
}

.order-delivery-payment .form-check>div:first-child {
    flex-shrink: 0;
    width: 2.75rem;
    height: 1rem;
    margin: 0;
    padding: 0;
}

.order-delivery-payment .form-check>div.label {
    flex-grow: 1;
    padding-right: 2rem;
}

.order-delivery-payment .form-check>div.img {
    width: 2.875rem;
    height: 1.375rem;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.order-delivery-payment .form-check .form-check-input {
    position: absolute;
    top: 1rem;
    left: 1.75rem;
    z-index: 1;
}

.order-delivery-payment .form-check[data-rel="dpd"] div.img {
    background-image: url(../svg/delivery-dpd.svg);
}

.order-delivery-payment .form-check[data-rel="os"] div.img {
    background-image: url(../svg/delivery-os.svg);
}

.order-delivery-payment .form-check[data-rel="card"] div.img {
    background-image: url(../svg/payment-card.svg);
}

.order-summary {
    position: relative;
    top: 6rem;
    position: sticky !important;
    margin-top: 1.87rem;
    padding-left: 2rem;
}

.resume .items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.87rem 0;

    border-top: 1px solid var(--color-Gray-6);
    border-bottom: 1px solid var(--color-Gray-6);
}

.resume .items>div {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    width: 100%;

    color: #000;
    text-align: center;
    font-size: .675rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.resume .items>div>div:first-child {
    flex-shrink: 0;
    width: 1.5rem;
}

.resume .items>div>div:nth-child(2) {
    flex-grow: 1;
    padding: 0 0.75rem;

    font-size: .675rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    text-align: left;
}

.delivery-payment {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    padding: 0.87rem 0;
    border-bottom: 1px solid var(--color-Gray-6);
}

.delivery-payment>div {
    display: flex;
    gap: 0.25rem;
    width: 100%;

    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.delivery-payment>div>div:first-child {
    flex-shrink: 0;
    min-width: 8rem;
    font-weight: 700;
}

.delivery-payment>div>div:nth-child(2) {
    flex-grow: 1;
}

.orderbox {
    margin-top: 1.87rem;
    padding: 0 1.87rem 4rem 1.87rem;
}

.orderbox h2 {
    display: flex;
    padding-bottom: 1.44rem;
    border-bottom: 1px solid var(--color-Gray-6);
}

.order-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
}

.order-options .form-select {
    color: #333;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.25rem;
    /* 125% */
}

.add-address {
    padding-top: 1.63rem;
}

.add-address>a {
    position: relative;
    display: inline-block;
    padding-left: 2rem;

    color: var(--color-gray-5);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
}

.add-address>a::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 0.8125rem);

    display: block;
    width: 1.625rem;
    height: 1.625rem;
    flex-shrink: 0;

    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../svg/add.svg);
}

.cart h2.simple {
    padding-bottom: 0.75rem;
}

.summary {
    margin-top: 3.5rem;

    color: #000;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
    /* 160% */
}

.summary .order-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.summary .order-details>div {
    display: flex;
    gap: 0.81rem;
}

.summary .order-details>div>div {
    color: #000;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.summary .order-details>div>div a {
    color: var(--color-blue-1);
    text-decoration: underline;
}

@media (max-width: 768px) {

    /* --- Obecné zmenšení rytmu --- */
    .order-delivery-payment {
        margin-top: 1rem;
    }

    .order-delivery-payment .form-check {
        padding: 0.6rem 0.5rem;
        border-top: 1px solid var(--color-Gray-6);
        gap: 0.5rem;
    }

    .order-delivery-payment .form-check:last-child {
        border-bottom: 1px solid var(--color-Gray-6);
    }

    .order-delivery-payment .form-check-label {
        font-size: 0.85rem;
        font-weight: 600;
        line-height: 1.2;
    }

    .order-delivery-payment .form-check>div:first-child {
        width: 2rem;
        height: 1rem;
    }

    .order-delivery-payment .form-check>div.label {
        padding-right: 1rem;
    }

    .order-delivery-payment .form-check>div.img {
        width: 2.2rem;
        height: 1.1rem;
    }

    .order-delivery-payment .form-check .form-check-input {
        top: 0.6rem;
        left: 1rem;
    }

    /* --- Souhrn objednávky (pravý sloupec) --- */
    .order-summary {
        position: static !important;
        margin-top: 1.5rem;
        padding-left: 0;
    }

    .resume .items {
        gap: 0.5rem;
        padding: 0.6rem 0;
    }

    .resume .items>div {
        gap: 0.25rem;
        font-size: 0.75rem;
    }

    .resume .items>div>div:nth-child(2) {
        font-size: 0.75rem;
        padding: 0 0.5rem;
    }

    /* --- Doprava + platba v souhrnu --- */
    .delivery-payment {
        gap: 0.5rem;
        padding: 0.6rem 0;
    }

    .delivery-payment>div {
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .delivery-payment>div>div:first-child {
        min-width: 6rem;
        font-size: 0.85rem;
    }

    /* --- Hlavní box objednávky --- */
    .orderbox {
        margin-top: 1.2rem;
        padding: 0 0 2rem 0;
    }

    .orderbox h2 {
        padding-bottom: 0.9rem;
    }

    .order-options {
        gap: 0.75rem;
        padding-top: 1.2rem;
    }

    .order-options .form-select {
        font-size: 0.95rem;
        height: 2.6rem;
    }

    /* --- Přidání adresy --- */
    .add-address {
        padding-top: 1rem;
    }

    .add-address>a {
        padding-left: 1.6rem;
        font-size: 0.85rem;
    }

    .add-address>a::before {
        width: 1.2rem;
        height: 1.2rem;
        top: calc(50% - 0.6rem);
    }

    /* --- Souhrn ceny --- */
    .summary {
        margin-top: 1.2rem;
        font-size: 1.1rem;
        line-height: 1.5rem;
    }

    .summary .order-details {
        gap: 0.6rem;
        margin-top: 1.5rem;
    }

    .summary .order-details>div {
        gap: 0.5rem;
    }

    .summary .order-details>div>div {
        font-size: 1.1rem;
    }
}


/* !SECTION */

/* 
// SECTION 07 CUSTOMER
*/
.customer {
    display: flex;
    padding: 2.13rem 1.87rem 4rem 1.87rem;
}

@media (max-width: 991.98px) {
    .customer {
        flex-direction: column;
        padding: 1rem 1rem 3.5rem 1rem;
    }
}

.menu-customer {
    display: flex;
    flex-direction: column;
    width: 16rem;
    flex-shrink: 0;
    gap: 1.87rem;
    padding-top: 2.5rem;
}

.menu-customer>div {
    position: relative;
    padding-left: 2rem;
}

.menu-customer>div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-size: contain;
}

.menu-customer>div.menu-customer-home::before {
    background-image: url(../svg/user.svg);
}

.menu-customer>div.menu-customer-order::before {
    background-image: url(../svg/tool-orders.svg);
}

.menu-customer>div.menu-customer-settings::before {
    background-image: url(../svg/tool-settings.svg);
}

.menu-customer>div.menu-customer-lists::before {
    background-image: url(../svg/list.svg);
}

.menu-customer>div.menu-customer-favorites::before {
    background-image: url(../svg/eye.svg);
}

.menu-customer>div>a {
    display: block;
    color: #000;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
}

.menu-customer>div>a>span {
    display: block;
    padding-top: 0.37rem;

    color: var(--color-gray-1);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.customer .panel-customer {
    flex-grow: 1;
    padding-left: 0;
}

.customer .panel-customer h1 {
    margin-bottom: 3.31rem;
}

@media (max-width: 991.98px) {
    .customer .panel-customer {
        padding-top: 1.5rem;
        padding-left: 0;
    }

    .customer .panel-customer h1 {
        margin: 0 0 1.5rem 0;
        text-align: center;
    }
}

.dashboard {
    display: flex;
    width: 100%;
    height: 6.56rem;
    margin-bottom: 3rem;
}

.dashboard .customer-meta {
    border-bottom: 0.375rem solid var(--color-blue-1);
}

.dashboard .today {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
    flex-grow: 1;
    padding-bottom: 1.25rem;

    border-bottom: 0.375rem solid var(--color-Gray-6);
}

.dashboard .today>div>span {
    font-weight: 700;
}

.dashboard .customer-name {
    position: relative;
    padding-left: 5.19rem;
}

.dashboard .customer-name>div:first-child {
    color: #000;
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.25rem;
    /* 100% */
}

.dashboard .customer-name>div:last-child {
    color: #000;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.25rem;
    /* 125% */
}

.dashboard .customer-name::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 2rem);
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: var(--color-blue-1);
    background-repeat: no-repeat;
    background-size: 1rem 1rem;
    background-position: center center;
    background-image: url(../svg/user-w.svg);
}

.dashboard .customer-stats {
    display: flex;
    gap: 1.63rem;
    align-items: center;
    padding-top: 0.87rem;
    padding-left: 5.19rem;

    color: #000;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem;
    /* 125% */
}

.dashboard .customer-stats>div {
    display: flex;
    align-items: center;
    height: 1.75rem;
}

.dashboard .customer-stats>div>span {
    padding-left: 0.38rem;
}

.customer-sale {
    color: var(--color-sale);
}

.dashboard .customer-sale {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.customer h2 {
    display: flex;
    padding-bottom: 1.44rem;
    margin-bottom: 1.69rem;
    border-bottom: 1px solid var(--color-Gray-6);

    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media (max-width: 768px) {

    .dashboard {
        flex-direction: column;
        height: auto;
        margin-bottom: 2rem;
    }

    .dashboard .customer-meta {
        border-bottom: none;
        padding-bottom: 1rem;
    }

    .dashboard .customer-name {
        padding-left: 4rem;
        padding-bottom: 1rem;
    }

    .dashboard .customer-name::before {
        width: 3rem;
        height: 3rem;
        top: 0.2rem;
        background-size: 0.9rem 0.9rem;
    }

    .dashboard .customer-name>div:first-child {
        font-size: 1.1rem;
        line-height: 1.2rem;
    }

    .dashboard .customer-name>div:last-child {
        font-size: 0.9rem;
        line-height: 1.2rem;
    }

    .dashboard .customer-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding-left: 4rem;
        padding-top: 0.5rem;
        font-size: 0.9rem;
    }

    .dashboard .customer-stats>div {
        height: auto;
    }

    .dashboard .today {
        justify-content: flex-start;
        align-items: center;
        padding: 1rem 0;
        border-bottom: none;
        border-top: 0.375rem solid var(--color-Gray-6);
    }

    .dashboard .today>div {
        font-size: 0.95rem;
        line-height: 1.3rem;
    }

    .dashboard .today>div>span {
        font-weight: 700;
    }
}

table.orders {
    width: 100%;
}

table.orders td {
    height: 2.5625rem;
    vertical-align: middle;
    padding: 0 0.75rem;

    color: #000;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem;
    /* 142.857% */
}

table.orders tr:nth-child(even) td {
    border-radius: 0.125rem;
    background: #FAFAFA;
}

table.orders td:first-child>a {
    color: var(--color-blue-1);
    text-decoration: underline;
}

table.orders .date {
    font-family: var(--font-secondary);
    font-weight: 700;
}

@media (max-width: 767.98px) {

    table.orders,
    table.orders thead,
    table.orders tbody,
    table.orders th,
    table.orders td,
    table.orders tr {
        display: block;
        width: 100%;
    }

    table.orders tr {
        margin-bottom: 1rem;
        padding: 1rem;
        border: 1px solid var(--color-Gray-6);
        border-radius: 0.5rem;
        background: #fff;
    }

    table.orders td {
        padding: 0.25rem 0;
        height: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: none;
        background: none !important;
    }

    table.orders td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--color-gray-3);
        margin-right: 1rem;
        flex-shrink: 0;
    }

    /* skryj zebra efekt */
    table.orders tr:nth-child(even) td {
        background: none;
    }
}


.status-new {
    color: var(--color-new-order);
}

.status-completed {
    color: var(--color-completed-order);
}

.status-storno {
    color: #000;
}

.invoice>a {
    position: relative;
    display: inline-block;
    padding-left: 1.56rem;
    color: #000;
    font-family: var(--font-secondary);
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
}

.invoice>a::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 0.5rem);
    display: block;
    width: 1rem;
    height: 1rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../svg/pdf.svg);
}

.view-all {
    display: flex;
    justify-content: center;
    margin-top: 1.87rem;
}

.view-all>a {
    color: var(--color-gray-5);
    text-align: center;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
}

.order-number {
    font-weight: 700;
    color: var(--color-blue-1);
}

.order-detail {
    margin-top: 2.5rem;
}

.order-head {
    display: flex;
    gap: 1.63rem;
    width: 100%;
    padding-bottom: 0.75rem;

    color: #000;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.order-head>div:last-child {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
}

.order-body {
    padding: 2rem 1.87rem;

    font-size: 0.875rem;
    border-radius: 0.125rem;
    border: 1px dashed #DDD;
}

.order-body strong {
    font-weight: 700;
}

.order-body .no {
    margin-bottom: 4rem;
}

.order-body .order-no {
    color: #2D9CDB;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--color-blue-1);
}

.order-body .items {
    width: 100%;
}

.order-body .items thead,
.order-body .items tbody {
    border-bottom: 1px solid var(--color-Gray-6);
}

.order-body .items thead td {
    padding-bottom: 0.75rem;
    color: var(--color-gray-1);
}

.order-body .items tbody td {
    padding: 0.81rem 0.75rem;
}

.order-body .items .title {
    color: #333;
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.order-body .items .title a {
    color: #333;
    text-decoration: none;
}

.order-body .items .title a:hover {
    text-decoration: underline;
}

.order-body .items.out-of-stock {
    margin-bottom: 1.5rem;
}

.order-body .totals {
    font-size: 1rem;
    font-weight: 700;
}

.order-body .totals .total-wo-vat {
    font-size: 0.875rem;
}

.order-delivery-addresses {
    display: flex;
    gap: 4.5rem;
}

.order-body .delivery-type {
    color: red;
}

.order-body h2 {
    margin: 1rem 0 2rem 0;
    padding: 0;
    border: 0;

    color: #000;
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.order-body h3{
    font-size:1rem;
    font-weight:700;
    margin:2rem 0 1rem;
    color:#333;
    border-left:4px solid #F2994A;
    padding-left:.5rem;
}

@media (max-width: 768px) {
    .invoice a {
        font-size: 1.25rem;
        border: 1px solid var(--color-Gray-6);
        border-radius: 0.125rem;
        padding: 0.75rem 1rem 0.75rem 1.75rem;
    }

    .invoice a::before {
        left: 0.5rem;
    }

    .order-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0 0 2rem 0;
    }

    .order-head>div:last-child {
        order: -2;
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        padding-bottom: 1.5rem;
    }

    .order-body {
        padding: 2.5rem 1rem;
    }

    .order-body .no {
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .order-body .no .order-no {
        display: block;
        font-size: 1.25rem;
    }

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

    table.items thead {
        display: none;
        /* Skryjeme hlavičku */
    }

    table.items tbody tr {
        display: block;
        background: #fff;
        margin-bottom: 1rem;
        padding: 1rem;
        border: 1px solid var(--color-Gray-6);
        border-radius: 0.25rem;
    }

    table.items tbody tr td {
        display: flex;
        justify-content: space-between;
        padding: 0.35rem 0;
        font-size: 0.95rem;
        border: none;
    }

    table.items tbody tr td.title {
        font-size: 1rem !important;
    }

    /* Popisky před hodnotami */
    table.items tbody tr td::before {
        content: attr(data-label);
        font-weight: 400;
        color: var(--color-gray-3);
        margin-right: 1rem;
    }

    /* Zarovnání cen doprava */
    table.items tbody tr td.tr {
        justify-content: space-between;
        text-align: right;
    }

    table.items tbody tr td.title::before {
        display: none;
    }

    .order-detail .totals {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 5rem;
        border-radius: 0.125rem;
        background-color: var(--color-gray-2);
    }

    .order-detail .order-delivery-addresses {
        flex-direction: column;
        gap: 1.5rem;
    }

    .order-detail .order-delivery-addresses h2 {
        display: block;
        margin: 0;
        padding: 0;
        text-align: center !important;
    }

    .order-detail .order-delivery-addresses address {
        padding: 1rem;
        color: var(--color-gray-4);
        line-height: 1.5rem;
    }

}

.customer address {
    font-style: normal;
    color: var(--color-gray-4);
    line-height: 1.25rem;
}

.settings .settings-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 4.75rem;
}

.settings .settings-options .vat {
    display: flex;
    align-items: center;
}

.settings .address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 20px;
}

.settings .address-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 18px;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: box-shadow .2s, border-color .2s;
}

.settings .address-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.settings .address-content {
    font-size: 15px;
    line-height: 1.45;
    color: #374151;
}

.settings .remove-address {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f3f4f6;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    color: #6b7280;
    transition: background .2s, color .2s;
}

.settings .remove-address:hover {
    background: #fee2e2;
    color: #b91c1c;
}

.settings .add-address-wrapper {
    margin-top: 12px;
}

.settings .add-address {
    border: 1px dashed #9ca3af;
    transition: background .2s, border-color .2s;
}

.settings .add-address:hover {
    background: #f3f4f6;
    border-color: #6b7280;
}

.settings .delivery-addresses .add-address {
    padding-top: 0;
}

#settings-new-password {
    display: none;
}

@media (max-width: 768px) {

    /* --- Globální rytmus --- */
    .settings-card {
        padding: 1rem 1.25rem;
        border-radius: 12px;
    }

    .settings .settings-options {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* --- Formulářové prvky --- */
    .settings .form-row .row {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .settings .form-label {
        font-size: 0.95rem;
        margin-bottom: 0.35rem;
        display: block;
    }

    .settings .input-group {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .settings .input-group.select select {
        width: 100%;
        font-size: 1rem;
        padding: 0.55rem 0.75rem;
    }

    /* --- Přepínač DPH --- */
    .settings .form-check-switch {
        transform: scale(0.9);
    }

    /* --- Textová nápověda --- */
    .settings .form-help {
        margin-top: 0.75rem;
        font-size: 0.9rem;
        line-height: 1.4rem;
        color: #4b5563;
    }

    .settings .form-help p {
        margin-bottom: 0.75rem;
    }

    /* --- Adresní grid --- */
    .settings .address-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .settings .address-card {
        padding: 14px 16px;
        border-radius: 10px;
    }

    .settings .address-content {
        font-size: 0.95rem;
        line-height: 1.4rem;
    }

    .settings .remove-address {
        width: 24px;
        height: 24px;
        font-size: 14px;
        top: 8px;
        right: 8px;
    }

    /* --- Přidání adresy --- */
    .settings .add-address-wrapper {
        margin-top: 10px;
    }

    /* --- Nové heslo --- */
    #settings-new-password {
        display: none;
    }
}


/* !SECTION */

/* 
// SECTION 08 DIALOG
*/
.dialog {
    width: 42rem;
    padding: 0 !important;
    border-radius: 0.125rem;
}

.dialog>div {
    padding: 1rem 2rem;
}

.dialog h3 {
    position: relative;
    margin: 0;
    padding: 0;
    color: #000;
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.dialog .dialog-footer {
    border-top: 1px solid var(--color-Gray-6);
}

.dialog .dialog-footer {
    display: flex;
    justify-content: space-between;
}

.dialog .dialog-footer>div {
    display: flex;
    align-items: center;
}

.dialog a.back {
    color: inherit;
    text-decoration: none;
}

.dialog .dialog-added-product {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.dialog a {
    color: var(--color-blue-1);
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .dialog {
        width: 100%;
    }
}

/* !SECTION */

/* 
// SECTION 09 PAGE
*/
.page {
    padding: 0 1.87rem 2rem 1.87rem;
}

.page h1 {
    padding: 0;
}

.page h2 {
    margin: 1.38rem 0 1rem 0;
    padding: 0;
    font-size: 1.25rem;
}

.page a {
    color: var(--color-blue-1);
    text-decoration: underline;
}

.page ul {
    list-style: none;
    padding-left: 1.2rem;
}

.page ul li {
    position: relative;
    margin: 0.4rem 0;
}

.page ul li::before {
    content: "";
    position: absolute;
    left: -1.2rem;
    top: 0.55rem;
    width: 0.45rem;
    height: 0.45rem;
    border: 2px solid var(--color-blue-1);
    border-radius: 50%;
}

.page p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
    color: #333;
    font-size: 1rem;
    font-weight: 400;
}

.page table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 1rem;
    color: #333;
    border: none;
}

.page thead th {
    text-align: left;
    font-weight: 600;
    padding: 0.75rem 0.5rem;
    border-bottom: 2px solid var(--color-blue-1);
}

.page tbody td {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--color-Gray-6);
    line-height: 1.6;
}

.page tbody tr:last-child td {
    border-bottom: none;
}

.page tbody tr:hover td {
    background: rgba(0, 0, 0, 0.03);
    transition: background 0.2s ease;
}


/* !SECTION */

.range-slider {
    position: relative;
    width: 100%;
    height: 32px;
    margin: 12px 0 8px;
}

.range-track-base {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 4px;
    background: #dcdcdc;
    border-radius: 2px;
}

.range-track-fill {
    position: absolute;
    top: 15px;
    height: 4px;
    background: var(--color-blue-1);
    border-radius: 2px;
}

.thumb {
    position: absolute;
    top: 6px;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 2px solid var(--color-blue-1);
    border-radius: 50%;
    cursor: pointer;
    transform: translateX(-50%);
    z-index: 10;
}

.range-values {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.range-values input {
    width: 100%;
    height: 2rem;
    padding: 0 0 0 0.75rem;
    border: 1px solid #DDD;
    border-radius: 0.125rem;
    background: #FFF;

    color: #333;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2rem;
}

/* Plynulé animace */
.range-track-fill,
.thumb {
    transition: left 0.2s cubic-bezier(.25, .8, .25, 1),
        width 0.2s cubic-bezier(.25, .8, .25, 1);
}

/* Během dragování vypneme animace */
.no-anim {
    transition: none !important;
}

/* TODO */
/* Wrapper pro každou položku filtru */
.filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    cursor: pointer;
}

.filter-option input[type="checkbox"] {
    margin: 0;
}

/* Disabled */
.filter-option.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Accordion */
.filter-title {
    cursor: pointer;
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-content {
    padding-left: 0.25rem;
    padding-bottom: 0.5rem;
}

.filter-block.collapsed .filter-content {
    display: none;
}

/* Sekce */
.filter-section {
    margin-top: 1.5rem;
}

.filter-section-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
/*
.form-check:has(.form-check-input:disabled) {
    display: none;
}*/

