/* ============================================================
   Herbano Ratgeber SingleProduct
   Image-Wrap immer quadratisch via aspect-ratio: 1/1.
   Bild fully contained mit explizitem width/height: 100%.
   ============================================================ */

.herbano-products.herbano-products--single {
    width: 100%;
    max-width: 100%;
    margin: 32px 0;
    font-family: inherit;
    box-sizing: border-box;
}

.herbano-products--single .herbano-products__heading {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0 0 24px 0;
    padding: 0;
    line-height: 1.3;
}

.herbano-products--single .herbano-products__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    box-sizing: border-box;
    max-width: 360px;
    margin: 0 auto;
}

.herbano-products--single .herbano-products__card:hover {
    border-color: #467c48;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    text-decoration: none;
}

.herbano-products--single .herbano-products__image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 240px;
    max-height: 360px;
    background: #fafafa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 14px 0;
    overflow: hidden;
    padding: 24px;
    box-sizing: border-box;
}

.herbano-products--single .herbano-products__image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.herbano-products--single .herbano-products__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.herbano-products--single .herbano-products__title {
    font-size: 15px;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0 0 14px 0;
    padding: 0;
    line-height: 1.35;
    text-align: center;
    display: block;
    width: 100%;
}

.herbano-products--single .herbano-products__subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    margin: 0 0 14px 0;
    padding: 0;
    line-height: 1.5;
    text-align: center;
    display: block;
    width: 100%;
}

.herbano-products--single .herbano-products__button {
    background: #467c48;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin: auto auto 0 auto;
    transition: background 0.2s ease;
    display: inline-block;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
}

.herbano-products--single .herbano-products__card:hover .herbano-products__button {
    background: #3a6b3c;
}

/* Hero Layout (Desktop) */
.herbano-products--single .herbano-products__card--hero {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 24px;
    padding: 24px;
    max-width: 100%;
    width: 100%;
}

.herbano-products--single .herbano-products__card--hero .herbano-products__image-wrap {
    flex: 0 0 240px;
    width: 240px;
    aspect-ratio: 1 / 1;
    max-width: 240px;
    max-height: 240px;
    min-height: 240px;
    margin: 0;
    padding: 16px;
}

.herbano-products--single .herbano-products__card--hero .herbano-products__content {
    flex: 1 1 0;
    align-items: flex-start;
    text-align: left;
    min-width: 0;
}

.herbano-products--single .herbano-products__card--hero .herbano-products__title {
    font-size: 20px;
    text-align: left;
    margin: 0 0 10px 0;
    width: auto;
}

.herbano-products--single .herbano-products__card--hero .herbano-products__subtitle {
    text-align: left;
    font-size: 15px;
    margin: 0 0 18px 0;
}

.herbano-products--single .herbano-products__card--hero .herbano-products__button {
    margin: 0;
    align-self: flex-start;
    padding: 12px 28px;
}

/* Mobile */
@media (max-width: 600px) {
    .herbano-products--single .herbano-products__heading {
        font-size: 19px;
        margin-bottom: 18px;
    }
    .herbano-products--single .herbano-products__card--hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
        padding: 16px;
    }
    .herbano-products--single .herbano-products__card--hero .herbano-products__image-wrap {
        flex: none;
        width: 100%;
        max-width: 100%;
        max-height: 320px;
        min-height: 240px;
        margin: 0 0 14px 0;
        padding: 24px;
    }
    .herbano-products--single .herbano-products__card--hero .herbano-products__content {
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .herbano-products--single .herbano-products__card--hero .herbano-products__title {
        text-align: center;
        font-size: 17px;
        width: 100%;
    }
    .herbano-products--single .herbano-products__card--hero .herbano-products__subtitle {
        text-align: center;
        font-size: 14px;
    }
    .herbano-products--single .herbano-products__card--hero .herbano-products__button {
        align-self: center;
        padding: 10px 22px;
        font-size: 13px;
    }
    .herbano-products--single .herbano-products__image-wrap {
        max-height: 320px;
        min-height: 240px;
    }
}
