/* Amazon Product Card – Stylesheet */

.apc-card {
    display: block;
    margin: 30px 0;
    font-family: inherit;
    max-width: 760px;
}

/* Bild-Bereich */
.apc-image-wrap {
    flex: 0 0 160px;
    text-align: center;
}

.apc-image {
    max-width: 160px;
    max-height: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
}

.apc-no-image {
    width: 160px;
    height: 160px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 13px;
    border-radius: 6px;
}

/* Info-Bereich */
.apc-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.apc-title {
    font-size: 17px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.apc-title a {
    color: #111 !important;
    text-decoration: none !important;
}

.apc-title a:hover {
    color: #e47911 !important;
}

/* Features / Bullet Points */
.apc-features {
    margin: 0 !important;
    padding-left: 18px !important;
    font-size: 13.5px;
    color: #444;
    line-height: 1.6;
}

.apc-features li {
    margin-bottom: 3px;
}

/* Preis + Button */
.apc-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: auto;
}

.apc-price {
    font-size: 22px;
    font-weight: 700;
    color: #B12704;
}

.apc-button {
    display: inline-block;
    background: #f0c14b;
    color: #111 !important;
    text-decoration: none !important;
    padding: 9px 18px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #a88734;
    transition: background 0.2s;
    white-space: nowrap;
}

.apc-button:hover {
    background: #ddb347;
}

/* Disclaimer */
.apc-price-na {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

.apc-fallback-hint {
    font-size: 13px;
    color: #888;
    margin: 4px 0 8px;
}

.apc-disclaimer {
    font-size: 11px !important;
    color: #999 !important;
    margin: 0 !important;
}

/* Responsive – Mobilgeräte */
@media (max-width: 540px) {
    .apc-card {
        flex-direction: column;
        align-items: center;
    }

    .apc-image-wrap {
        flex: none;
    }

    .apc-info {
        width: 100%;
    }
}
