/**
 * OnlineVision – prepojenie produktov cez Súvisiaci tovar
 * Stabilná priebežná verzia: 0.2.5
 */

.ov-pc {
    box-sizing: border-box;
}

.ov-pc *,
.ov-pc *::before,
.ov-pc *::after {
    box-sizing: border-box;
}

.ov-pc__items {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
}

.ov-pc__item {
    position: relative;
    display: block;
    flex: 0 0 auto;
    padding: 3px;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    background: #fff;
    overflow: visible;
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ov-pc__item:hover,
.ov-pc__item:focus-visible {
    border-color: #777;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    outline: none;
}

.ov-pc__item img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    object-fit: cover;
}

/* Aktuálne otvorený produkt */
.ov-pc__item.is-current {
    border-color: #222;
}

.ov-pc__item.is-current::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -6px;
    left: 0;
    height: 2px;
    background: #000;
    z-index: 3;
}

/* Produkt bez jedinej skladovej varianty */
.ov-pc__item.is-out-of-stock img {
    filter: grayscale(100%);
    opacity: 0.6;
}

.ov-pc__item.is-out-of-stock::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -2px;
    width: calc(100% + 4px);
    height: 1.3px;
    background: #4f4646;
    transform: rotate(-45deg);
    transform-origin: center;
    z-index: 4;
    pointer-events: none;
}

/* Detail produktu – platný riadok v natívnej tabuľke Shoptetu */
.ov-pc-detail-row > th {
    vertical-align: top !important;
    padding-top: 24px !important;
}

.ov-pc-detail-row > td {
    vertical-align: top !important;
    overflow: visible !important;
}

.ov-pc-detail-row .ov-pc--detail {
    display: block !important;
    width: 100% !important;
    margin: 8px 0 18px !important;
}

.ov-pc-detail-row .ov-pc__label {
    display: none !important;
}

.ov-pc-detail-row .ov-pc__items {
    display: grid !important;
    grid-template-columns: repeat(4, 60px) !important;
    grid-auto-flow: row !important;
    gap: 8px !important;
    justify-content: start !important;
    align-items: start !important;
    width: auto !important;
    max-width: 100% !important;
}

.ov-pc-detail-row .ov-pc__item {
    width: 60px !important;
    height: 60px !important;
    padding: 0 !important;
    overflow: visible !important;
    line-height: 0 !important;
}

/* Detail: fotografia vyplní celý rámček bez vnútorného bieleho priestoru. */
.ov-pc--detail .ov-pc__item img {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 4px !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
}

/* Označenie aktuálneho produktu je oddelené od rámčeka malou medzerou. */
.ov-pc--detail .ov-pc__item.is-current::after {
    right: 0 !important;
    bottom: -6px !important;
    left: 0 !important;
    height: 2px !important;
}

/* Samostatný tabuľkový riadok farieb nad celým blokom dopravy. */
.ov-pc-detail-standalone-row > th,
.ov-pc-detail-standalone-row > td {
    padding: 12px 0 16px !important;
    border: 0 !important;
    text-align: left !important;
    vertical-align: top !important;
}

.ov-pc-detail-standalone-row .ov-pc-detail-standalone {
    margin: 0 !important;
}

/* Detail produktu bez klikateľných veľkostí (napr. statická Veľkosť: UNI). */
.ov-pc-detail-standalone {
    margin: 14px 0 18px !important;
}

.ov-pc-detail-standalone .ov-pc--detail {
    display: grid !important;
    grid-template-columns: 80px minmax(0, 1fr) !important;
    align-items: start !important;
    width: 100% !important;
    margin: 0 !important;
}

.ov-pc-detail-standalone .ov-pc__label {
    display: block !important;
    padding-top: 20px !important;
    color: #777 !important;
}

.ov-pc-detail-standalone .ov-pc__items {
    display: grid !important;
    grid-template-columns: repeat(4, 60px) !important;
    grid-auto-flow: row !important;
    gap: 8px !important;
    justify-content: start !important;
    align-items: start !important;
    width: auto !important;
    max-width: 100% !important;
}

.ov-pc-detail-standalone .ov-pc__item {
    width: 60px !important;
    height: 60px !important;
    padding: 0 !important;
    overflow: visible !important;
    line-height: 0 !important;
}

/* Veľkosti: na desktope v jednom riadku a dynamicky pod prvou fotografiou. */
#product-detail-form .ov-pc-size-wrapper {
    position: relative !important;
    left: var(--ov-pc-size-shift, 0px) !important;
    white-space: nowrap !important;
}

#product-detail-form .ov-pc-size-wrapper .advanced-parameter {
    display: inline-block !important;
    float: none !important;
    vertical-align: top !important;
}

/* Výpis kategórie: názov → farby/modely → cena a tlačidlo. */
.products-block .product.ov-pc-category-card .name,
.products-block .product.ov-pc-category-card .p-name {
    margin-bottom: 8px !important;
}

.ov-pc--category {
    display: block;
    min-height: 58px;
    margin: 0 0 12px;
    box-sizing: border-box;
}

.products-block .product.ov-pc-category-card .p-bottom {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    margin: 10px 0 0 !important;
    padding: 0 !important;
}

.ov-pc--category-placeholder {
    visibility: hidden !important;
    pointer-events: none !important;
}

.ov-pc--category .ov-pc__items {
    justify-content: center;
    gap: 6px;
}

.ov-pc--category .ov-pc__item {
    width: 48px;
    height: 58px;
    padding: 0;
    line-height: 0;
}

/* Kategória: rovnaký plný výrez fotografie ako na detaile produktu. */
.ov-pc--category .ov-pc__item img {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 4px !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
}

.ov-pc--category .ov-pc__item.is-current::after {
    bottom: -5px;
}

/* Natívny blok Súvisiaci tovar ostáva v DOM ako dátový zdroj, ale nezobrazuje sa. */
.ov-pc-native-related-hidden {
    display: none !important;
}

@media (max-width: 767px) {
    .ov-pc-detail-row > th {
        padding-top: 20px !important;
    }

    .ov-pc-detail-row .ov-pc--detail {
        margin: 6px 0 16px !important;
    }

    .ov-pc-detail-row .ov-pc__items {
        grid-template-columns: repeat(4, 52px) !important;
        gap: 6px !important;
    }

    .ov-pc-detail-row .ov-pc__item {
        width: 52px !important;
        height: 58px !important;
    }

    .ov-pc-detail-standalone .ov-pc--detail {
        grid-template-columns: 72px minmax(0, 1fr) !important;
    }

    .ov-pc-detail-standalone .ov-pc__items {
        grid-template-columns: repeat(4, 52px) !important;
        gap: 6px !important;
    }

    .ov-pc-detail-standalone .ov-pc__item {
        width: 52px !important;
        height: 58px !important;
    }

    .ov-pc--category .ov-pc__item {
        width: 44px;
        height: 54px;
    }
}

/* Na veľmi úzkych mobiloch zalomíme veľkosti po štyroch. */
@media (max-width: 360px) {
    #product-detail-form .ov-pc-size-wrapper {
        display: grid !important;
        grid-template-columns: repeat(4, 40px) !important;
        gap: 6px !important;
        width: 178px !important;
        min-width: 178px !important;
        max-width: 178px !important;
        white-space: normal !important;
    }

    #product-detail-form .ov-pc-size-wrapper .advanced-parameter {
        display: inline-flex !important;
        float: none !important;
        width: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
        margin: 0 !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    #product-detail-form .ov-pc-size-wrapper .advanced-parameter-inner {
        width: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
        box-sizing: border-box !important;
    }
}

/*
 * Detail produktu – počas prípravy kvalitnej canvas miniatúry
 * skryjeme dočasný 100×100 Shoptet preview obrázok.
 * Rámček zostane na mieste a ostrý obrázok sa jemne zobrazí po dokončení.
 */
.ov-pc--detail .ov-pc__item img {
    transition: opacity 0.15s ease;
}

.ov-pc--detail
.ov-pc__item
img[data-ov-pc-canvas-pending="1"] {
    opacity: 0 !important;
}

