/*! shoptet-custom.css | 2025-08-14 */

/* === 1) Úpravy rozměrů, parametry, tlačítko do košíku === */
@media (min-width: 1240px) {
    .container {
        width: 1468px;
    }
}

.ytb-video {
    margin-top: 40px;
}

/* Parametry */
h2.h2-parametry {
    color: #ff5c00;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 40px;
    padding-left: 10px;
}

.extended-description .detail-parameters tr {
    border-bottom: 1px dotted;
}

.one-column-body table.detail-parameters tbody tr th {
    min-width: 205px;
    padding: 13px;
}

table.detail-parameters tbody tr td {
    padding-left: 20px;
    padding-top: 7px;
}

/* Extra produkty po vložení do košíku */
.advanced-order .products-wrapper.product-slider-holder.has-navigation {
    width: 100%;
}

/* Tlačítko do košíku */
button.btn.btn-cart.add-to-cart-button {
    color: white;
    text-transform: uppercase;
}

/* === 2) Skrytí flagu + styl link-wrapper/link-container === */
span.flag.flag-60-dni-na-vymenu-velikosti {
    display: none;
}
.link-wrapper {
    margin-bottom: 19px;
    display: flex;
    justify-content: center;
    background: #ff5a2b;
    border-radius: 7px 7px 0 0;
}
.link-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff5a2c;
    color: #fff;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 19px;
    font-weight: 700;
    max-width: 300px;
    height: 50px;
    padding: 0 10px;
    box-sizing: border-box;
    transition: background-color .3s ease;
}
.link-container:hover {
    color: #fff;
    text-decoration: underline;
}
.link-container img {
    max-height: 24px;
    margin-right: 8px;
}
@media (max-width: 320px) {
    .link-container {
        font-size: 14px;
        padding: 0 5px;
    }
    .link-container img {
        max-height: 20px;
        margin-right: 5px;
    }
}

/* === 3) Styl pro ikonu 360° === */
.image360--icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-image: url('https://example.com/path-to-your-icon.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 9999;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
.image360--icon.hidden {
    opacity: 0;
}

/* === 4) Styl pro price-tooltip === */
.price-tooltip {
    position: absolute;
    background: rgba(0,0,0,0.9);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    max-width: 250px;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.price-tooltip button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 5px;
    border-radius: 3px;
}
.price-tooltip button:hover {
    background: #0056b3;
}

/* === 5) Font Montserrat + další úpravy === */
body,
h1, h2, h3, h4, h5, h6,
p, a, span, strong, em, input, textarea, select, button,
.menu, .footer, .product-name, .price, .btn, .category-box, .product,
.cart, .label, .form-control {
    font-family: 'Montserrat', sans-serif !important;
}

#navigation .navigation-in ul li > a > b {
    font-size: 14px !important;
}

body.desktop.id-1 #content-wrapper,
body.mobile.id-1 #content-wrapper {
    display: none;
}

body.type-category .product-appendix {
    display: block;
    margin-top: 4px; 
}

.products-block > div .p .name {
    height: auto;
}

body.type-category span.product-appendix {
    font-size: 14px;
}