.hr-produktcard {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    box-sizing: border-box;
}

.hr-produktcard *,
.hr-produktcard *::before,
.hr-produktcard *::after {
    box-sizing: border-box;
}

.hr-produktcard__image-wrap {
    width: 100%;
    height: 200px;
    background: #f1f2f3;
    overflow: hidden;
    flex: 0 0 auto;
    position: relative;
}

.hr-produktcard__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: static;
}

.hr-produktcard__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    position: relative;
}

.hr-produktcard__title {
    margin: 0;
    padding: 0;
    position: static;
    display: block;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
    color: #222;
}

.hr-produktcard__subtitle {
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #555;
}

.hr-produktcard__price {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
}

.hr-produktcard__unit {
    font-size: 18px;
    font-weight: 400;
}

.hr-produktcard__listprice {
    margin: 0;
    font-size: 14px;
    color: #777;
}

.hr-produktcard__listprice span {
    text-decoration: line-through;
}

.hr-produktcard__saving {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.hr-produktcard__button {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 12px 16px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #0073aa;
    border-radius: 4px;
    background: #ffffff;
    color: #0073aa;
    line-height: 1.2;
}

.hr-produktcard__button:hover {
    background: #0073aa;
    color: #ffffff;
}

.hr-produktcard-notice {
    padding: 12px;
    border: 1px solid #d63638;
    color: #d63638;
    background: #fff5f5;
    border-radius: 4px;
}

.hr-produktcard-search-results {
    margin-top: 6px;
    border: 1px solid #ccd0d4;
    background: #fff;
    max-height: 240px;
    overflow: auto;
    z-index: 99999;
    position: relative;
}

.hr-produktcard-search-item {
    width: 100%;
    display: block;
    text-align: left;
    padding: 8px;
    border: 0;
    border-bottom: 1px solid #eee;
    background: #fff;
    cursor: pointer;
}

.hr-produktcard-search-item:hover {
    background: #f0f6fc;
}

.hr-produktcard-search-item strong {
    font-size: 12px;
}

.hr-produktcard-search-item span,
.hr-produktcard-search-loading,
.hr-produktcard-search-empty {
    font-size: 11px;
    color: #555;
}

.hr-produktcard-search-loading,
.hr-produktcard-search-empty {
    padding: 8px;
}

.hr-produktcard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

@media (max-width: 767px) {
    .hr-produktcard-grid {
        grid-template-columns: 1fr;
    }
}