/* ============================================
   SHOP LAYOUT WRAPPER
============================================ */
.owv-shop-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* ============================================
   DESKTOP GRID
============================================ */
.owv-shop-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: flex-start;
}

.owv-desktop-sidebar {
    display: block;
}

/* ============================================
   MOBILE SIDEBAR (Accordion)
============================================ */
.owv-mobile-sidebar {
    display: none;
    margin-bottom: 20px;
}

.owv-mobile-toggle {
    width: 100%;
    padding: 12px 15px;
    background: #017da1;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.owv-mobile-panel {
    display: none;
    margin-top: 15px;
}

.owv-mobile-panel.open {
    display: block;
}

/* ============================================
   SIDEBAR BOXES SHARED STYLE
============================================ */
.owv-sidebar-box {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 18px 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.owv-sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: #017da1;
    border-bottom: 2px solid #eef2f4;
    padding-bottom: 6px;
    margin-bottom: 15px;
}

.owv-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.owv-list li {
    padding: 8px 4px;
    border-bottom: 1px solid #f0f0f0;
}

.owv-list li:last-child {
    border-bottom: none;
}

.owv-list a {
    color: #444;
    text-decoration: none;
    display: block;
    transition: 0.2s;
}

.owv-list li:hover {
    background: #f7fcfe;
}

.owv-list li:hover a {
    color: #017da1;
    padding-left: 4px;
}

/* ============================================
   RESPONSIVE (TABLET & MOBILE)
============================================ */
@media (max-width: 992px) {

    .owv-shop-grid {
        grid-template-columns: 1fr;
    }

    .owv-desktop-sidebar {
        display: none;
    }

    .owv-mobile-sidebar {
        display: block;
    }
}

/* Thumbnail Container muss relative sein */
li.product .astra-shop-thumbnail-wrap {
    position: relative;
}

/* Overlay-Badge */
.owv-brand-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 99;

    background: rgba(255, 255, 255, 0.85);
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);

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

    max-width: 90px;
}

/* Logo selbst */
.owv-brand-badge img {
    max-height: 28px;
    width: auto;
    display: block;
    opacity: 0.95;
}


/* --------------------------------------------- */
/*   PRODUCT DETAILS BOX – Modern & Clean        */
/* --------------------------------------------- */

.woocommerce-product-details__short-description {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    padding: 18px 20px;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* Titel "Details" */
.woocommerce-product-details__short-description > p:first-child {
    font-size: 20px;
    font-weight: 600;
    color: #017da1;
    margin-bottom: 12px;
}

/* Liste */
.woocommerce-product-details__short-description ul {
    padding-left: 0 !important;
    list-style: none;
    margin: 0;
}

/* Einträge */
.woocommerce-product-details__short-description ul li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
}

/* Letzter Eintrag ohne Line */
.woocommerce-product-details__short-description ul li:last-child {
    border-bottom: none;
}

/* Icon vor jedem Listenelement */
.woocommerce-product-details__short-description ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 6px;
    color: #017da1;
    font-weight: 600;
}