/* Styly pro produkty Shoptet */
:root {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    --color-primary: #06b2b6;
    --color-primary-h: 181;
    --color-primary-s: 94%;
    --color-primary-l: 37%;
    --color-primary-hover: #343434;
    --color-primary-hover-h: 0;
    --color-primary-hover-s: 0%;
    --color-primary-hover-l: 20%;
    --color-secondary: #343434;
    --color-secondary-h: 0;
    --color-secondary-s: 0%;
    --color-secondary-l: 20%;
    --color-secondary-hover: #d7f9f9;
    --color-secondary-hover-h: 180;
    --color-secondary-hover-s: 74%;
    --color-secondary-hover-l: 91%;
    --color-tertiary: #e2e2e2;
    --color-tertiary-h: 0;
    --color-tertiary-s: 0%;
    --color-tertiary-l: 89%;
    --color-tertiary-hover: #e2e2e2;
    --color-tertiary-hover-h: 0;
    --color-tertiary-hover-s: 0%;
    --color-tertiary-hover-l: 89%;
    --color-header-background: #212121;
    --template-font: "Source Sans 3";
    --template-headings-font: "Open Sans";
    --header-background-url: none;
    --cookies-notice-background: #1A1937;
    --cookies-notice-color: #F8FAFB;
    --cookies-notice-button-hover: #f5f5f5;
    --cookies-notice-link-hover: #27263f;
    --templates-update-management-preview-mode-content: "Náhled aktualizací šablony je aktivní pro váš prohlížeč.";
    --colors-focus-primary: #09367e;
    --colors-focus-secondary: #fff;
    --scroll-offset: var(--scroll-offset-override,var(--scroll-offset-runtime,0px));
    --scroll-extra-offset: 0px;
    --_color-header-text: #fff;
    --_color-header-contrast-text: #000;
    --_color-header-contrast-bg: #fff;
    --_color-header-menu-border: var(--color-header-background);
    --_color-header-dropdown-border: hsla(0,0%,100%,.3);
    --_color-header-button-border: hsla(0,0%,100%,.3);
    --scrollbar-width: 15px;
    --vh: 11.98px;
    --scroll-offset-runtime: 10px;
}

.product {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    font-size: 14px;
    line-height: 1.384615;
    font-weight: 400;
    color: #000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: unset !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    margin-bottom: 0;
}

.product .p {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e2e2;
    overflow: hidden;
    background-color: #ffffff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product:hover .p {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Zaoblené rohy pro obrázek produktu */
.product .p .image {
    display: block;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.product .p .image img {
    border-radius: 12px 12px 0 0;
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.product:hover .p .image img {
    transform: scale(1.05);
}

/* Obsah produktu */
.product .p .p-in {
    padding: 15px;
    border-radius: 0 0 12px 12px;
}

/* Název produktu */
.product .p .name {
    text-decoration: none;
    color: #000000;
    display: block;
    margin-bottom: 10px;
}

.product .p .name:hover {
    color: #333333;
}

/* Dostupnost */
.product .p .availability {
    margin-bottom: 15px;
    font-size: 14px;
}

/* Cena */
.product .p .prices {
    margin-bottom: 15px;
}

.product .p .price-final {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

/* Tlačítko do košíku */
.product .p .btn-cart {
    border-radius: 8px;
    padding: 12px 24px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.product .p .btn-cart:hover {
    background-color: #333333;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Flag discount */
.flag.flag-discount {
    width: 80px;
    height: 80px;
    white-space: nowrap;
    background-color: #00b3c4;
}

/* Responzivní design */
@media (max-width: 768px) {
    .product .p {
        border-radius: 10px;
    }

    .product .p .image,
    .product .p .image img {
        border-radius: 10px 10px 0 0;
    }

    .product .p .p-in {
        padding: 12px;
        border-radius: 0 0 10px 10px;
    }

    .product .p .price-final {
        font-size: 18px;
    }

    .product .p .btn-cart {
        padding: 10px 20px;
        font-size: 13px;
    }
}

